(20.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.2ms) select sqlite_version(*)  (12.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20190706100955)  (0.2ms) begin transaction  (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706100955"]]  (21.4ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateIntroTours (20190706110237)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "intro_tours" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ident" varchar NOT NULL, "controller_path" varchar DEFAULT '' NOT NULL, "action_name" varchar DEFAULT '' NOT NULL, "route" text, "options" text, "posted" boolean DEFAULT 'f', "posted_at" datetime, "expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) select sqlite_version(*)  (0.1ms) CREATE UNIQUE INDEX "index_intro_tours_on_ident" ON "intro_tours" ("ident")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'  (0.1ms) CREATE INDEX "index_intro_tours_on_controller_and_action_and_posted" ON "intro_tours" ("controller_path", "action_name", "posted") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110237"]]  (9.3ms) commit transaction Migrating to CreateIntroTourHistories (20190706110238)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "intro_tour_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tour_id" integer NOT NULL, "user_id" integer NOT NULL, "touch_count" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_intro_tour_histories_on_user_and_tour_and_touch_count" ON "intro_tour_histories" ("user_id", "tour_id", "touch_count") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110238"]]  (4.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'  (0.3ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" IS NULL LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index'  (0.0ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'   (0.2ms) begin transaction  (0.2ms) SAVEPOINT active_record_1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.2ms) rollback transaction  (7.7ms) CREATE TABLE "intro_tour_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tour_id" integer NOT NULL, "user_id" integer NOT NULL, "touch_count" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) select sqlite_version(*)  (5.7ms) CREATE INDEX "index_intro_tour_histories_on_user_and_tour_and_touch_count" ON "intro_tour_histories" ("user_id", "tour_id", "touch_count")  (4.4ms) CREATE TABLE "intro_tours" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ident" varchar NOT NULL, "controller_path" varchar DEFAULT '' NOT NULL, "action_name" varchar DEFAULT '' NOT NULL, "route" text, "options" text, "posted" boolean DEFAULT 'f', "posted_at" datetime, "expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (5.8ms) CREATE INDEX "index_intro_tours_on_controller_and_action_and_posted" ON "intro_tours" ("controller_path", "action_name", "posted")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index'  (4.4ms) CREATE UNIQUE INDEX "index_intro_tours_on_ident" ON "intro_tours" ("ident")  (5.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (5.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (6.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT version FROM "schema_migrations"  (4.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20190706110238')  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20190706110237')  (8.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20190706100955') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'   (7.6ms) CREATE TABLE "intro_tour_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tour_id" integer NOT NULL, "user_id" integer NOT NULL, "touch_count" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) select sqlite_version(*)  (6.1ms) CREATE INDEX "index_intro_tour_histories_on_user_and_tour_and_touch_count" ON "intro_tour_histories" ("user_id", "tour_id", "touch_count")  (6.3ms) CREATE TABLE "intro_tours" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ident" varchar NOT NULL, "controller_path" varchar DEFAULT '' NOT NULL, "action_name" varchar DEFAULT '' NOT NULL, "route" text, "options" text, "posted" boolean DEFAULT 'f', "posted_at" datetime, "expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (4.2ms) CREATE INDEX "index_intro_tours_on_controller_and_action_and_posted" ON "intro_tours" ("controller_path", "action_name", "posted")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index'  (6.1ms) CREATE UNIQUE INDEX "index_intro_tours_on_ident" ON "intro_tours" ("ident")  (4.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (6.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (9.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT version FROM "schema_migrations"  (4.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20190706110238')  (8.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20190706110237')  (6.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20190706100955')  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (4.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20190706100955)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706100955"]]  (4.3ms) commit transaction Migrating to CreateIntroTours (20190706110237)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "intro_tours" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ident" varchar NOT NULL, "controller_path" varchar DEFAULT '' NOT NULL, "action_name" varchar DEFAULT '' NOT NULL, "route" text, "options" text, "posted" boolean DEFAULT 'f', "posted_at" datetime, "expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE UNIQUE INDEX "index_intro_tours_on_ident" ON "intro_tours" ("ident")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'  (0.1ms) CREATE INDEX "index_intro_tours_on_controller_and_action_and_posted" ON "intro_tours" ("controller_path", "action_name", "posted") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110237"]]  (6.3ms) commit transaction Migrating to CreateIntroTourHistories (20190706110238)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "intro_tour_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tour_id" integer NOT NULL, "user_id" integer NOT NULL, "touch_count" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_intro_tour_histories_on_user_and_tour_and_touch_count" ON "intro_tour_histories" ("user_id", "tour_id", "touch_count") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110238"]]  (4.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index' Started GET "/" for ::1 at 2019-07-07 01:23:05 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (1.1ms) Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:23:13 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (26.3ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:24:05 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.1ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:24:07 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.2ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:26:10 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.7ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:26:11 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.4ms) Started GET "/intro/admin/sessions" for ::1 at 2019-07-07 01:26:45 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.8ms) Started GET "/intro/admin/sessions" for ::1 at 2019-07-07 01:27:41 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.8ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:27:44 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.8ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:28:00 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (27.4ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:29:34 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:29:35 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:29:36 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.5ms) Started GET "/intro/admin/sessions" for ::1 at 2019-07-07 01:29:55 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.5ms) Started GET "/intro/admin/sessions" for ::1 at 2019-07-07 01:32:03 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (31.6ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:32:28 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.2ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:34:36 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `authenticate?' for #): activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (20.5ms) Started GET "/admin/sessions/new" for ::1 at 2019-07-07 01:34:42 +0800 ActionController::RoutingError (No route matches [GET] "/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (39.8ms) Started GET "/admin/sessions/new" for ::1 at 2019-07-07 01:35:01 +0800 ActionController::RoutingError (No route matches [GET] "/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.7ms) Started GET "/admin/sessions/new" for ::1 at 2019-07-07 01:35:02 +0800 ActionController::RoutingError (No route matches [GET] "/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (12.5ms) Started GET "/admin/sessions/new" for ::1 at 2019-07-07 01:35:03 +0800 ActionController::RoutingError (No route matches [GET] "/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.0ms) Started GET "/admin/sessions/new" for ::1 at 2019-07-07 01:35:03 +0800 ActionController::RoutingError (No route matches [GET] "/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.9ms) Started GET "/admin/sessions/new" for ::1 at 2019-07-07 01:35:59 +0800 ActionController::RoutingError (No route matches [GET] "/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.0ms) Started GET "/admin/sessions/new" for ::1 at 2019-07-07 01:36:01 +0800 ActionController::RoutingError (No route matches [GET] "/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.0ms) Started GET "/admin/sessions/new" for ::1 at 2019-07-07 01:36:05 +0800 ActionController::RoutingError (No route matches [GET] "/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.2ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:36:10 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (15.1ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:36:30 +0800 ActionController::RoutingError (uninitialized constant Intro::Intro): activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:276:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.7ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:36:48 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.3ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:36:50 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.3ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:36:55 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `authenticate?' for #): activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:37:27 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `authenticate?' for #): activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.4ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:37:28 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `authenticate?' for #): activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.2ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:37:29 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `authenticate?' for #): activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.9ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:37:29 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `authenticate?' for #): activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.6ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:38:24 +0800 RuntimeError (Circular dependency detected while autoloading constant Intro::Admin::ApplicationController): activesupport (4.2.11.1) lib/active_support/dependencies.rb:492:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:3:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:2:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:1:in `' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.11.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:3:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:2:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:1:in `' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.11.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.11.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.11.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.7ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:38:28 +0800 RuntimeError (Circular dependency detected while autoloading constant Intro::Admin::ApplicationController): activesupport (4.2.11.1) lib/active_support/dependencies.rb:492:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:3:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:2:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:1:in `' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.11.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:3:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:2:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:1:in `' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.11.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.11.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.11.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:39:07 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `intro_admin_tours_path' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:18:in `redirect_authenticated_path' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.4ms) Started GET "/routes" for ::1 at 2019-07-07 01:39:25 +0800 ActionController::RoutingError (No route matches [GET] "/routes"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:40:22 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.2ms) Completed 200 OK in 168ms (Views: 167.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2019-07-07 01:40:22 +0800 Started GET "/assets/intro/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2019-07-07 01:40:22 +0800 Started GET "/intro/admin" for ::1 at 2019-07-07 01:41:55 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.0ms) Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:42:17 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `redirect' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:18:in `redirect_authenticated_path' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.1ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:42:35 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `redirect' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:18:in `redirect_authenticated_path' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.4ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:42:36 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `redirect' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:18:in `redirect_authenticated_path' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.7ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:42:36 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `redirect' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:18:in `redirect_authenticated_path' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.6ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:42:37 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `redirect' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:18:in `redirect_authenticated_path' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:42:38 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `redirect' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:18:in `redirect_authenticated_path' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.1ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:43:55 +0800 Processing by Intro::Admin::SessionsController#new as HTML Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :redirect_authenticated_path rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 01:43:55 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.0ms) Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:44:19 +0800 Processing by Intro::Admin::SessionsController#new as HTML Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :redirect_authenticated_path rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 01:44:19 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:44:41 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `pry' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:8:in `authenticate?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:45:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `byebug' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:8:in `authenticate?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.5ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:45:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `byebug' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:8:in `authenticate?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block (2 levels) in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `all?' activesupport (4.2.11.1) lib/active_support/callbacks.rb:144:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.6ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:45:34 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#new as HTML Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :redirect_authenticated_path rendered or redirected Completed 302 Found in 30516ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 01:46:04 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.6ms) Completed 200 OK in 1401ms (Views: 151.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 01:48:51 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :redirect_unauthenticated_path rendered or redirected Completed 302 Found in 6ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:48:51 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (13.1ms) Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined local variable or method `intro_admin_sessions' for #<#:0x005614072ada20>): 1: <%= form_tag intro_admin_sessions, method: :post do %> 2: <%= input_field_tag :username, params[:username] %> 3: 4: <%= password_field_tag :password, params[:password] %> /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322009477860' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.4ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:49:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (10.9ms) Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined local variable or method `intro_admin_sessions_path' for #<#:0x00561407d756d8>): 1: <%= form_tag intro_admin_sessions_path, method: :post do %> 2: <%= input_field_tag :username, params[:username] %> 3: 4: <%= password_field_tag :password, params[:password] %> /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322015389940' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.5ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:49:08 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (5.6ms) Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined local variable or method `intro_admin_sessions_path' for #<#:0x00561408f94a08>): 1: <%= form_tag intro_admin_sessions_path, method: :post do %> 2: <%= input_field_tag :username, params[:username] %> 3: 4: <%= password_field_tag :password, params[:password] %> /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322015389940' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.1ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:49:14 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (7.9ms) Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `input_field_tag' for #<#:0x005614092d0a78>): 1: <%= form_tag admin_sessions_path, method: :post do %> 2: <%= input_field_tag :username, params[:username] %> 3: 4: <%= password_field_tag :password, params[:password] %> 5: <% end %> /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:2:in `block in __home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322026599580' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_tag_helper.rb:70:in `form_tag' /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322026599580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.6ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:49:16 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (6.2ms) Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `input_field_tag' for #<#:0x005614092b6268>): 1: <%= form_tag admin_sessions_path, method: :post do %> 2: <%= input_field_tag :username, params[:username] %> 3: 4: <%= password_field_tag :password, params[:password] %> 5: <% end %> /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:2:in `block in __home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322026599580' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_tag_helper.rb:70:in `form_tag' /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322026599580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:49:16 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (6.2ms) Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `input_field_tag' for #<#:0x005614092b6c18>): 1: <%= form_tag admin_sessions_path, method: :post do %> 2: <%= input_field_tag :username, params[:username] %> 3: 4: <%= password_field_tag :password, params[:password] %> 5: <% end %> /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:2:in `block in __home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322026599580' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_tag_helper.rb:70:in `form_tag' /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___519909726860121014_47322026599580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.4ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:49:28 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 159ms (Views: 158.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:49:41 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:50:08 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.3ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:50:09 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 200 OK in 43ms (Views: 42.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:50:25 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.4ms) Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:50:26 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.6ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:50:26 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:50:55 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.7ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:50:56 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 01:50:59 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :redirect_unauthenticated_path rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:51:00 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.4ms) Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:51:04 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"HxGLN8cdWd4L7TLOv8XLWY/hxc3iFq0fR9AN3cE7VFXbTf2qmO/0HDstiFcUlTQgNj557dC5bBRQ4M93AlBp3A==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"提交"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.7ms) Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:51:06 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"i368dhcE7UMv6KbviLqLXwePkNxMzQOKbxaf6Rc0AChPIsrrSPZAgR8oHHYj6nQmvlAs/H5iwoF4Jl1D1F89oQ==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"提交"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.6ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:51:07 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"POfV3DXu3Bssrwnj3NSG5rRUDaQenWQatfJ+HNxlmIb4u6NBahxx2Rxvs3p3hHmfDYuxhCwypRGiwry2Hw6lDw==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"提交"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.3ms) Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:51:09 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"xT7VcMAZbqb79DGo5ghDZYzvTO624v9Fk8n601lAOVkBYqPtn+vDZMs0izFNWLwcNTDwzoRNPk6E+Th5misE0A==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"提交"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.3ms) Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:51:11 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e/x2dDPd3qKSseqrYIq+dyU25C+m+2tfgGN6uV6DaHO/oADpbC9zYKJxUDLL2kEOnOlYD5RUqlSXU7gTnehV+g==", "username"=>"brabbrbab", "password"=>"[FILTERED]", "commit"=>"提交"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.4ms) Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:51:50 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"L0Z25BtkY3V4iF+zFIBeqlqT5T/HagaJsLHvCxz/YG7rGgB5RJbOt0hI5Sq/0KHT40xZH/XFx4KngS2h35Rd5w==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"提交"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 01:51:50 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :redirect_unauthenticated_path rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:51:50 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:51:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.3ms) Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:51:54 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.3ms) Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:51:54 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:51:55 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:51:55 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.4ms) Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:52:04 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"M8rAtl/zklWFjGKhbs9Y6LLND8TzUV8bL0SDujmo9yv3lrYrAAE/l7VM2DjFn6eRCxKz5MH+nhA4dEEQ+sPKog==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"提交"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 01:52:04 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :redirect_unauthenticated_path rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:52:04 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:52:43 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"211Tr5JIsfbZpsSx8V4gG12nhfknGcBp7Si+kNr8TEkfASUyzbocNOlmfihaDt9i5Hg52RW2AWL6GHw6GZdxwA==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"提交"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 41368ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 01:53:24 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :redirect_unauthenticated_path rendered or redirected Completed 302 Found in 1571ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 01:53:26 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 200 OK in 1803ms (Views: 7.1ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 01:54:02 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"kV5+tMX4qHFSW5KCgtCH85hT7yk7HCxL2zY+37gTP0ZVAggpmgoFs2KbKBspgHiKIYxTCQmz7UDMBvx1e3gCzw==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"提交"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 6ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 01:54:02 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.7ms) Completed 200 OK in 162ms (Views: 161.4ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-07-07 11:59:32 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (1.7ms) Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 11:59:43 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 157ms (Views: 151.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 12:00:06 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :redirect_unauthenticated_path rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 12:00:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.4ms) Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-07-07 12:05:36 +0800 Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 12:07:13 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Hzw0Z67rM6RJyiLERT4fyyCwHSY5/Tg8mjzn38orf4vbYEL68RmeZnkKmF3ubuCymW+hBgtS+TeNDCV1CUBCAg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"提交"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 12:07:13 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.4ms) Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 12:07:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 12:07:27 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 12:22:28 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :redirect_unauthenticated_path rendered or redirected Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 12:22:28 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 13:34:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.9ms) Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 13:36:02 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 13:36:03 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.3ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 13:36:12 +0800 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 171ms (Views: 165.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 13:47:07 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/layouts/intro/admin/_base.html.erb (74.3ms) Completed 200 OK in 95ms (Views: 93.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-07-07 13:47:07 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-07-07 13:47:07 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 13:47:44 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/layouts/intro/admin/_base.html.erb (12.7ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:27:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:27:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.4ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:37:26 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (7.9ms) Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file 'body' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__3627688344281708621_47073030793140' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.8ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:37:48 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file '_body' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__3627688344281708621_47073030793140' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.1ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:37:57 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file './body' under '/home/jinhu/Repos/intro/app/assets/stylesheets' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__3627688344281708621_47073030793140' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.4ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:38:00 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file './body' under '/home/jinhu/Repos/intro/app/assets/stylesheets' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__3627688344281708621_47073030793140' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:38:01 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file './body' under '/home/jinhu/Repos/intro/app/assets/stylesheets' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__3627688344281708621_47073030793140' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:38:20 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.4ms) Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file 'intro/admin/body' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__3627688344281708621_47073030793140' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.2ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:38:30 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.2ms) Completed 200 OK in 30ms (Views: 28.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/body.self-0a67ba31093bc3bf8d955ecc87d6946a48d4a206c7a880849cc1dd891748ea81.css?body=1" for ::1 at 2019-07-07 15:38:30 +0800 Started GET "/assets/intro/admin/logins.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-07-07 15:38:30 +0800 Started GET "/assets/intro/admin/application.self-3afaab9b30d7ced1287b89b3c811bdd5df225185aadfac69d243d9a7f866faf4.css?body=1" for ::1 at 2019-07-07 15:38:30 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:38:59 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file 'body' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__3627688344281708621_47073030793140' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:39:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.8ms) Completed 200 OK in 36ms (Views: 34.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:39:30 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (6.5ms) Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:45:48 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.8ms) Completed 200 OK in 44ms (Views: 42.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/base.self-a40349e0279b083dd1b08b4b3a52c8bd2df27f88f5ee66a036f88d8d1b4ee6b6.css?body=1" for ::1 at 2019-07-07 15:45:48 +0800 Started GET "/assets/intro/admin/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-07-07 15:45:48 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 15:47:18 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TqDI15HIKX5cTqafb5EjQDiR/G2V+QhleSdL5UaJfH+QOxv8y2m3gw5ZK+7hSVNrjm+4cllNgI5+Qe/qjVwf8g==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 15:47:18 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.3ms) Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:47:24 +0800 Processing by Intro::Admin::SessionsController#new as HTML Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :unauthenticate rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 15:47:24 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 15:47:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.0ms) Started GET "/admin" for ::1 at 2019-07-07 15:47:33 +0800 ActionController::RoutingError (No route matches [GET] "/admin"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (60.4ms) Started GET "/intro/admin" for ::1 at 2019-07-07 15:47:41 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.2ms) Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:47:44 +0800 Processing by Intro::Admin::SessionsController#new as HTML Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :unauthenticate rendered or redirected Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 15:47:44 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 15:54:42 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 41ms (Views: 39.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-eda7999bf2a12feb44f2c25854d6a04937043f3d36b85d2128be3e1efd63be61.css?body=1" for ::1 at 2019-07-07 15:54:42 +0800 Started GET "/assets/intro/admin/overrides/form.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-07-07 15:54:42 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-07 15:54:43 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 15:55:09 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:55:09 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.0ms) Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 15:56:55 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.1ms) Completed 200 OK in 47ms (Views: 45.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-3a0be3cfe9b03f361065f3d9dc305ed14b926fa4898840224732cd3f41668d8f.css?body=1" for ::1 at 2019-07-07 15:56:56 +0800 Started GET "/assets/intro/admin/overrides/form.self-672e5387f730fd5188491d498dce1de0f3f5914e9f5e0a2ccd216485914296a9.css?body=1" for ::1 at 2019-07-07 15:56:56 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:07:45 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 200 OK in 52ms (Views: 50.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-061f1aa9af07c4a1d80e4135de7a14b6d2bb6fc15e13dce2b7f5b3a04cf6f224.css?body=1" for ::1 at 2019-07-07 16:07:45 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:08:57 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.2ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-3a0be3cfe9b03f361065f3d9dc305ed14b926fa4898840224732cd3f41668d8f.css?body=1" for ::1 at 2019-07-07 16:08:57 +0800 Started GET "/assets/intro/admin/overrides/form.self-061f1aa9af07c4a1d80e4135de7a14b6d2bb6fc15e13dce2b7f5b3a04cf6f224.css?body=1" for ::1 at 2019-07-07 16:08:57 +0800 Started GET "/assets/intro/admin/sessions.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-07-07 16:08:57 +0800 Started GET "/assets/intro/admin/application.self-3afaab9b30d7ced1287b89b3c811bdd5df225185aadfac69d243d9a7f866faf4.css?body=1" for ::1 at 2019-07-07 16:08:57 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-07-07 16:08:57 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:33:49 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (5.2ms) Completed 500 Internal Server Error in 397ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$root-font-size".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/body.css.scss:3 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:35:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file '../../variables' under '/home/jinhu/Repos/intro/app/assets/stylesheets' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css.scss:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.6ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:35:20 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file '../../variables' under '/home/jinhu/Repos/intro/app/assets/stylesheets' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css.scss:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.8ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:35:50 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file '../../variables' under '/home/jinhu/Repos/intro/app/assets/stylesheets' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css.scss:2 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.2ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:36:21 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.2ms) Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms) ActionView::Template::Error (File to import not found or unreadable: ../../variables. Load paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css.scss:1 sass (3.7.4) lib/sass/tree/import_node.rb:67:in `rescue in import' sass (3.7.4) lib/sass/tree/import_node.rb:45:in `import' sass (3.7.4) lib/sass/tree/import_node.rb:28:in `imported_file' sass (3.7.4) lib/sass/tree/import_node.rb:37:in `css_import?' sass (3.7.4) lib/sass/tree/visitors/perform.rb:310:in `visit_import' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.8ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:36:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms) ActionView::Template::Error (File to import not found or unreadable: ../../variables. Load paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css.scss:9 sass (3.7.4) lib/sass/tree/import_node.rb:67:in `rescue in import' sass (3.7.4) lib/sass/tree/import_node.rb:45:in `import' sass (3.7.4) lib/sass/tree/import_node.rb:28:in `imported_file' sass (3.7.4) lib/sass/tree/import_node.rb:37:in `css_import?' sass (3.7.4) lib/sass/tree/visitors/perform.rb:310:in `visit_import' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.9ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:37:10 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.5ms) Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) ActionView::Template::Error (File to import not found or unreadable: ../variables. Load paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.css.scss:9 sass (3.7.4) lib/sass/tree/import_node.rb:67:in `rescue in import' sass (3.7.4) lib/sass/tree/import_node.rb:45:in `import' sass (3.7.4) lib/sass/tree/import_node.rb:28:in `imported_file' sass (3.7.4) lib/sass/tree/import_node.rb:37:in `css_import?' sass (3.7.4) lib/sass/tree/visitors/perform.rb:310:in `visit_import' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:37:15 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$root-font-size".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/body.css.scss:3 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.4ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:37:40 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.3ms) Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$root-font-size".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/body.css.scss:3 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.8ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:37:56 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.8ms) Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$root-font-size".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/body.css.scss:3 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.8ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:38:23 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$root-font-size".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/body.css.scss:8 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.5ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:38:57 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.9ms) Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Invalid CSS after "...ables.css.scss'": expected selector or at-rule, was ".intro-admin__h..."): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/body.css.scss:3 sass (3.7.4) lib/sass/scss/parser.rb:1308:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1238:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:42:in `parse' sass (3.7.4) lib/sass/engine.rb:414:in `_to_tree' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.2ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:39:08 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.2ms) Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Invalid CSS after "..../../variables'": expected selector or at-rule, was ".intro-admin__h..."): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/body.css.scss:3 sass (3.7.4) lib/sass/scss/parser.rb:1308:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1238:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:42:in `parse' sass (3.7.4) lib/sass/engine.rb:414:in `_to_tree' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.8ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:39:44 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.4ms) Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.0ms) ActionView::Template::Error (File to import not found or unreadable: ../../variables. Load paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/body.css.scss:1 sass (3.7.4) lib/sass/tree/import_node.rb:67:in `rescue in import' sass (3.7.4) lib/sass/tree/import_node.rb:45:in `import' sass (3.7.4) lib/sass/tree/import_node.rb:28:in `imported_file' sass (3.7.4) lib/sass/tree/import_node.rb:37:in `css_import?' sass (3.7.4) lib/sass/tree/visitors/perform.rb:310:in `visit_import' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.5ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:39:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.2ms) Completed 500 Internal Server Error in 49ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$border-color".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/form.css.scss:9 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `block in _perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `map' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.1ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:40:13 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.3ms) Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$border-color".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/form.css.scss:9 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `block in _perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `map' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.5ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:41:02 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.4ms) Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) ActionView::Template::Error (couldn't find file '../variables' under '/home/jinhu/Repos/intro/app/assets/stylesheets' with type 'text/css' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/application.scss:3 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (22.4ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:41:37 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 500 Internal Server Error in 67ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$border-color".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/form.scss:9 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `block in _perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `map' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.6ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:41:40 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Undefined variable: "$border-color".): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/form.scss:9 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `block in _perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `map' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.5ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:42:09 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.3ms) Completed 200 OK in 61ms (Views: 60.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-0b077bb6e916c25ad486bfd1657dc0424ffd538a351e382032ed9e3d0c6bf7ef.css?body=1" for ::1 at 2019-07-07 16:42:09 +0800 Started GET "/assets/intro/admin/overrides/form.self-10fc551c2ae7d3dd0c8c65097157bdc3c9649c62f2329bf7061c25e35e368bfc.css?body=1" for ::1 at 2019-07-07 16:42:09 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:43:13 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 40ms (Views: 38.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-5a332da191ff8102d4e6ae8668c9a860a51dc8d324b0e06b7fbff7d24a072039.css?body=1" for ::1 at 2019-07-07 16:43:13 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:43:24 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 59ms (Views: 58.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-69058ca446ea3781f71d40cbd9159579f3ca45feededc361f225711c84a7b6bc.css?body=1" for ::1 at 2019-07-07 16:43:24 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:43:58 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 53ms (Views: 51.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-355cd16a86ad09fed868a8c1d04129c89635de9daa7698278f5831b977d1ee14.css?body=1" for ::1 at 2019-07-07 16:43:58 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:45:38 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.3ms) Completed 200 OK in 82ms (Views: 80.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-f0e0fe7d3f7f332ab576abd5330464fd889f0025f8000e43ad1b236d6babcd71.css?body=1" for ::1 at 2019-07-07 16:45:38 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:46:09 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.1ms) Completed 200 OK in 58ms (Views: 56.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-04b5bf139823ee95e04f77d348f47806df7f3e6ca9599c8c530125a9f078e143.css?body=1" for ::1 at 2019-07-07 16:46:09 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:49:36 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 45ms (Views: 43.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-a4aeb25743ef4ae93cf0d57467a7b7e78f131ceb3ee5ecb5ef010e3baad7f1ce.css?body=1" for ::1 at 2019-07-07 16:49:36 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:50:01 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.7ms) Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:50:41 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 53ms (Views: 51.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-31bbc36a38d8bb836920798b88827fd6f503ede56081d8c1e1f150d22f51d2c5.css?body=1" for ::1 at 2019-07-07 16:50:41 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:54:38 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.2ms) Completed 200 OK in 33ms (Views: 31.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:55:46 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 83ms (Views: 81.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-257291911b02f8ae7d1b5c6ba959cc59da511174b68314982adecc0af03d4542.css?body=1" for ::1 at 2019-07-07 16:55:47 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:57:57 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.6ms) Completed 200 OK in 61ms (Views: 59.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 16:58:20 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (6.0ms) Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:04:19 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.4ms) Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:05:48 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.3ms) Completed 200 OK in 78ms (Views: 76.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-36006e20a9821af35b4fb69eb6609175df0520808654938cc99124bb96091d8f.css?body=1" for ::1 at 2019-07-07 17:05:49 +0800 Started GET "/assets/intro/admin/overrides/form.self-cf837afda279cba0dcd18c949f6c27bf82e5e29719315c133be326a91c1e2cad.css?body=1" for ::1 at 2019-07-07 17:05:49 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:09:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 91ms (Views: 89.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-36991e5f3c66ce23eb5059c9679caee8883daccd182a57b7f72d1a3b27e7a380.css?body=1" for ::1 at 2019-07-07 17:09:53 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:11:59 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (4.0ms) Completed 200 OK in 41ms (Views: 39.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-45a9ae433a14fbe9b2b8bbb707ff54fca2d0a8cb0b3ec3a953114c302d2029aa.css?body=1" for ::1 at 2019-07-07 17:11:59 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:12:54 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.7ms) Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/sessions.self-48f9c5593a904db873ad9da827998f82911845cca4496ee8093fb114ab6dda98.css?body=1" for ::1 at 2019-07-07 17:12:54 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:13:00 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 60ms (Views: 58.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/sessions.self-4b8ebe335970f60a02c22ed273bc7e728007dbe7d03cabba4642c0dd8bbd488d.css?body=1" for ::1 at 2019-07-07 17:13:00 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:13:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/sessions.self-e335c10f5176cbb56fff980cefab134bb97775589460eb8b0a44b235dd63f689.css?body=1" for ::1 at 2019-07-07 17:13:06 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:17:11 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.6ms) Completed 200 OK in 81ms (Views: 79.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-aa67a99e75ce561bd249d287df1de38fb1b94694667ff122f8ffff5f487a9f58.css?body=1" for ::1 at 2019-07-07 17:17:11 +0800 Started GET "/assets/intro/admin/sessions.self-471093be0d1d45353a7e07a4e3c1bbc094e807537d27ab16d6d6415135f4c106.css?body=1" for ::1 at 2019-07-07 17:17:11 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:17:48 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.1ms) Completed 200 OK in 39ms (Views: 36.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:19:43 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 39ms (Views: 38.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-73d6f9418f7e070a9c12d8bde5af1a40bd9f74a330ba34724dd1e6e7da578b6b.css?body=1" for ::1 at 2019-07-07 17:19:43 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:22:01 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.1ms) Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:22:40 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.7ms) Completed 200 OK in 67ms (Views: 65.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-e9678b6e15db6bc9ff6ddf56539fdf416db985fca8fac22f4ceb97af1f75d8d7.css?body=1" for ::1 at 2019-07-07 17:22:40 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:23:30 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.3ms) Completed 200 OK in 85ms (Views: 83.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-c18c0664e0159f3473286574cfc26442a863422e68fcb7e6ef212582dd05bc07.css?body=1" for ::1 at 2019-07-07 17:23:30 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:24:03 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.1ms) Completed 200 OK in 62ms (Views: 60.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/sessions.self-8b4280c1e7a0a1cd1685e6843747333aaef8a8df9ffb2a8323fc2cce39e78dff.css?body=1" for ::1 at 2019-07-07 17:24:03 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 17:24:04 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.9ms) Completed 200 OK in 31ms (Views: 29.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:24:16 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7314mRkDXkPEiejk9kojZWuvLr4v4ix/gU0rkhTyDiG4/X3WgsTeRsQj7W67ZgyClY3H2GP8f6yGtFDKPvjgA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.6ms) Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:25:51 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7314mRkDXkPEiejk9kojZWuvLr4v4ix/gU0rkhTyDiG4/X3WgsTeRsQj7W67ZgyClY3H2GP8f6yGtFDKPvjgA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.9ms) Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:25:56 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7314mRkDXkPEiejk9kojZWuvLr4v4ix/gU0rkhTyDiG4/X3WgsTeRsQj7W67ZgyClY3H2GP8f6yGtFDKPvjgA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.9ms) Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:26:07 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7314mRkDXkPEiejk9kojZWuvLr4v4ix/gU0rkhTyDiG4/X3WgsTeRsQj7W67ZgyClY3H2GP8f6yGtFDKPvjgA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 44ms (Views: 42.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:26:19 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7314mRkDXkPEiejk9kojZWuvLr4v4ix/gU0rkhTyDiG4/X3WgsTeRsQj7W67ZgyClY3H2GP8f6yGtFDKPvjgA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.8ms) Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/application.self-5ede5931025d421a58007b53757f83ead891471e072ddf1d33f435ef1ea172a0.css?body=1" for ::1 at 2019-07-07 17:26:19 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:26:26 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7314mRkDXkPEiejk9kojZWuvLr4v4ix/gU0rkhTyDiG4/X3WgsTeRsQj7W67ZgyClY3H2GP8f6yGtFDKPvjgA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:26:33 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7314mRkDXkPEiejk9kojZWuvLr4v4ix/gU0rkhTyDiG4/X3WgsTeRsQj7W67ZgyClY3H2GP8f6yGtFDKPvjgA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 43ms (Views: 40.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:35:18 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7314mRkDXkPEiejk9kojZWuvLr4v4ix/gU0rkhTyDiG4/X3WgsTeRsQj7W67ZgyClY3H2GP8f6yGtFDKPvjgA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.5ms) Completed 200 OK in 59ms (Views: 57.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/_flash.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-07-07 17:35:18 +0800 Started GET "/assets/intro/admin/application.self-f9ecc503685523b804a0f02a2ae501bb190b025b8354ec053661d70988296034.css?body=1" for ::1 at 2019-07-07 17:35:18 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:35:40 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"C+WCRY3UKWXRktSKnpXniEU5Gh9f6dQHagf9nz0X3Nn2u4JQs7s3ZcWQfJy3oVc32sGRusbZrUgmGBhyXb/3YQ==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (12305.8ms) Completed 200 OK in 12344ms (Views: 12341.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:36:57 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"C+WCRY3UKWXRktSKnpXniEU5Gh9f6dQHagf9nz0X3Nn2u4JQs7s3ZcWQfJy3oVc32sGRusbZrUgmGBhyXb/3YQ==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (11.6ms) Completed 200 OK in 37ms (Views: 34.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:42:44 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PiCMIhJggsnZMEHDr2e3ciEQbZQqv5MlPP3xpAfC4W/Dfow3LA+cyc0y6dWGUwfNvujmMbOP6mpw4hRJZ2rK1w==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (10599.7ms) Completed 500 Internal Server Error in 10634ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Invalid CSS after "...lash__list-item": expected "{", was ""): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/components/_flash.scss:2 sass (3.7.4) lib/sass/scss/parser.rb:1308:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1238:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1233:in `tok!' sass (3.7.4) lib/sass/scss/parser.rb:688:in `block' sass (3.7.4) lib/sass/scss/parser.rb:681:in `ruleset' sass (3.7.4) lib/sass/scss/parser.rb:707:in `block_child' sass (3.7.4) lib/sass/scss/parser.rb:697:in `block_contents' sass (3.7.4) lib/sass/scss/parser.rb:137:in `stylesheet' sass (3.7.4) lib/sass/scss/parser.rb:41:in `parse' sass (3.7.4) lib/sass/engine.rb:414:in `_to_tree' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:19:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.9ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:43:12 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PiCMIhJggsnZMEHDr2e3ciEQbZQqv5MlPP3xpAfC4W/Dfow3LA+cyc0y6dWGUwfNvujmMbOP6mpw4hRJZ2rK1w==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (9772.4ms) Completed 500 Internal Server Error in 9794ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Invalid CSS after "...lash__list-item": expected "{", was ""): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/components/_flash.scss:2 sass (3.7.4) lib/sass/scss/parser.rb:1308:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1238:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1233:in `tok!' sass (3.7.4) lib/sass/scss/parser.rb:688:in `block' sass (3.7.4) lib/sass/scss/parser.rb:681:in `ruleset' sass (3.7.4) lib/sass/scss/parser.rb:707:in `block_child' sass (3.7.4) lib/sass/scss/parser.rb:697:in `block_contents' sass (3.7.4) lib/sass/scss/parser.rb:137:in `stylesheet' sass (3.7.4) lib/sass/scss/parser.rb:41:in `parse' sass (3.7.4) lib/sass/engine.rb:414:in `_to_tree' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:19:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:44:35 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PiCMIhJggsnZMEHDr2e3ciEQbZQqv5MlPP3xpAfC4W/Dfow3LA+cyc0y6dWGUwfNvujmMbOP6mpw4hRJZ2rK1w==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (4721.9ms) Completed 500 Internal Server Error in 4750ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Invalid CSS after "...lash__list-item": expected "{", was ""): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/components/_flash.scss:2 sass (3.7.4) lib/sass/scss/parser.rb:1308:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1238:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1233:in `tok!' sass (3.7.4) lib/sass/scss/parser.rb:688:in `block' sass (3.7.4) lib/sass/scss/parser.rb:681:in `ruleset' sass (3.7.4) lib/sass/scss/parser.rb:707:in `block_child' sass (3.7.4) lib/sass/scss/parser.rb:697:in `block_contents' sass (3.7.4) lib/sass/scss/parser.rb:137:in `stylesheet' sass (3.7.4) lib/sass/scss/parser.rb:41:in `parse' sass (3.7.4) lib/sass/engine.rb:414:in `_to_tree' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1987950494292176156_47444560289440' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:19:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:45:07 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PiCMIhJggsnZMEHDr2e3ciEQbZQqv5MlPP3xpAfC4W/Dfow3LA+cyc0y6dWGUwfNvujmMbOP6mpw4hRJZ2rK1w==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (14939.5ms) Completed 500 Internal Server Error in 15258ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Invalid CSS after "...lash__list-item": expected "{", was ""): 2: 3: 4: <%= yield(:doc_title).presence || intro_translate('admin.title') %> 5: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 6: <%= javascript_include_tag "intro/admin/application" %> 7: <%= csrf_meta_tags %> 8: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/components/_flash.scss:2 sass (3.7.4) lib/sass/scss/parser.rb:1308:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1238:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1233:in `tok!' sass (3.7.4) lib/sass/scss/parser.rb:688:in `block' sass (3.7.4) lib/sass/scss/parser.rb:681:in `ruleset' sass (3.7.4) lib/sass/scss/parser.rb:707:in `block_child' sass (3.7.4) lib/sass/scss/parser.rb:697:in `block_contents' sass (3.7.4) lib/sass/scss/parser.rb:137:in `stylesheet' sass (3.7.4) lib/sass/scss/parser.rb:41:in `parse' sass (3.7.4) lib/sass/engine.rb:414:in `_to_tree' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:5:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1774795513361100057_47230305292220' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:19:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.9ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:46:04 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"PiCMIhJggsnZMEHDr2e3ciEQbZQqv5MlPP3xpAfC4W/Dfow3LA+cyc0y6dWGUwfNvujmMbOP6mpw4hRJZ2rK1w==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (6.9ms) Completed 200 OK in 349ms (Views: 343.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/sessions.self-f490549aa2ed1a8917efd14dea1dec171470197def7dda99be038351aa40ff2f.css?body=1" for ::1 at 2019-07-07 17:46:04 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:46:39 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2FTHdsNxLq1EUu/6S9PQwTpESpgJBsOi6/zXXjLir+olCsdj/R4wrVBQR+xi52B+pbzBPZA2uu2n4zKzUkqEUg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (7818.1ms) Completed 200 OK in 7847ms (Views: 7845.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:47:25 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2FTHdsNxLq1EUu/6S9PQwTpESpgJBsOi6/zXXjLir+olCsdj/R4wrVBQR+xi52B+pbzBPZA2uu2n4zKzUkqEUg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (6.1ms) Completed 200 OK in 37ms (Views: 34.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:47:40 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2FTHdsNxLq1EUu/6S9PQwTpESpgJBsOi6/zXXjLir+olCsdj/R4wrVBQR+xi52B+pbzBPZA2uu2n4zKzUkqEUg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (44058.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (44063.6ms) Completed 200 OK in 44095ms (Views: 44093.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:49:50 +0800 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2FTHdsNxLq1EUu/6S9PQwTpESpgJBsOi6/zXXjLir+olCsdj/R4wrVBQR+xi52B+pbzBPZA2uu2n4zKzUkqEUg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (7273.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (7330.4ms) Completed 200 OK in 7634ms (Views: 7628.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:54:47 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2FTHdsNxLq1EUu/6S9PQwTpESpgJBsOi6/zXXjLir+olCsdj/R4wrVBQR+xi52B+pbzBPZA2uu2n4zKzUkqEUg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/shared/_flash.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (5.6ms) Completed 200 OK in 103ms (Views: 100.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/_flash.self-db0f93e6df5a650e88b8f36162dd2ad93adf0d458c0b2a56e4743a01402ef8c0.css?body=1" for ::1 at 2019-07-07 17:54:48 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:59:17 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2FTHdsNxLq1EUu/6S9PQwTpESpgJBsOi6/zXXjLir+olCsdj/R4wrVBQR+xi52B+pbzBPZA2uu2n4zKzUkqEUg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (4.3ms) Completed 200 OK in 94ms (Views: 92.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-3d64f096a16205769ed6e1bb70f4192104b65690a32cf98cb6165945fa62bf74.css?body=1" for ::1 at 2019-07-07 17:59:17 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 17:59:32 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKuMNABjt63k/17ZL4plY6E5PRg3kYYOEUHYnlJVpKj19YwhPgyprfD99s8GvtXcPsG2va6h/0FdXj1zMv2PEA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 200 OK in 55ms (Views: 54.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-1168acb3955d75e39bf02e93a4eb7e33ed021a29d57befdd27e09affbfb7bd79.css?body=1" for ::1 at 2019-07-07 17:59:32 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:00:12 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKuMNABjt63k/17ZL4plY6E5PRg3kYYOEUHYnlJVpKj19YwhPgyprfD99s8GvtXcPsG2va6h/0FdXj1zMv2PEA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 107ms (Views: 105.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-6edb4163204d0c7ac5d7f219bd05c69f9b8aaaac08b11d7830dcb55576707dcf.css?body=1" for ::1 at 2019-07-07 18:00:12 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:01:53 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKuMNABjt63k/17ZL4plY6E5PRg3kYYOEUHYnlJVpKj19YwhPgyprfD99s8GvtXcPsG2va6h/0FdXj1zMv2PEA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 29ms (Views: 27.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:02:20 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CKuMNABjt63k/17ZL4plY6E5PRg3kYYOEUHYnlJVpKj19YwhPgyprfD99s8GvtXcPsG2va6h/0FdXj1zMv2PEA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:02:44 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GKNXt2DrvIypuUO47UHjuQdGsi5bzHenbc97YZ8e3qTl/VeiXoSijL27667EdVMGmL45i8L8Dugh0J6M/7b1HA==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 24ms (Views: 16.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:03:28 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.5ms) Completed 200 OK in 71ms (Views: 68.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/sessions.self-b2e49562c51c658d1611dd1cb2c719cc47544ee50e0aacbfbbe2bbd5ed6bd34e.css?body=1" for ::1 at 2019-07-07 18:03:28 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:03:31 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:03:36 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"R4tiAQsfgiHa6iDwH1pvMp8g5qm6AizBa9O4PqqZI9O61WIUNXCcIc7oiOY2bt+NANhtDCMyVY4nzF3TyjEIaw==", "username"=>"brabrb", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.9ms) Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:04:24 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"R4tiAQsfgiHa6iDwH1pvMp8g5qm6AizBa9O4PqqZI9O61WIUNXCcIc7oiOY2bt+NANhtDCMyVY4nzF3TyjEIaw==", "username"=>"brabrb", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:04:32 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.3ms) Completed 200 OK in 61ms (Views: 59.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/sessions.self-ea079dcacdbecdb4609e5cc55ff38aa880b77210f69455298a2a6957409a774b.css?body=1" for ::1 at 2019-07-07 18:04:32 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:04:34 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.9ms) Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:04:42 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1+dkGqd96478c9GUt7ficGnICOv87BA3Y/f1Zo8ELGoquWQPmRL1juhxeYKeg1LP9jCDTmXcaXgv6BCL76wH0g==", "username"=>"brba", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:05:23 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1+dkGqd96478c9GUt7ficGnICOv87BA3Y/f1Zo8ELGoquWQPmRL1juhxeYKeg1LP9jCDTmXcaXgv6BCL76wH0g==", "username"=>"brba", "password"=>"[FILTERED]", "commit"=>"Sign in"} Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `now=' for "Incorrect username or password":String): /home/jinhu/Repos/intro/app/controllers/intro/admin/sessions_controller.rb:18:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.8ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:05:32 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1+dkGqd96478c9GUt7ficGnICOv87BA3Y/f1Zo8ELGoquWQPmRL1juhxeYKeg1LP9jCDTmXcaXgv6BCL76wH0g==", "username"=>"brba", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.7ms) Completed 200 OK in 33ms (Views: 30.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:05:35 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.8ms) Completed 200 OK in 42ms (Views: 39.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:05:41 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"o/chWAz6CTwkhvBveVTBB+oEP5ZGNyBQZ76KQyeQhkheqSFNMpUXPDCEWHlQYHG4dfy0M98HWR8roW+uRzit8A==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:05:43 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LvTvbl1rBZLZz2EMuazQkr8outq2NVXXIHtPTKBQuErTqu97YwQbks3NyRqQmGAtINAxfy8FLJhsZKqhwPiT8g==", "username"=>"brabbrba", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 18:05:51 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LvTvbl1rBZLZz2EMuazQkr8outq2NVXXIHtPTKBQuErTqu97YwQbks3NyRqQmGAtINAxfy8FLJhsZKqhwPiT8g==", "username"=>"brabbrba", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:05:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.3ms) Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:06:37 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:06:37 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.3ms) Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new?locales=zh-CN" for ::1 at 2019-07-07 18:08:36 +0800 Processing by Intro::Admin::SessionsController#new as HTML Parameters: {"locales"=>"zh-CN"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.2ms) Completed 200 OK in 36ms (Views: 33.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:50:07 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (8.2ms) Completed 200 OK in 396ms (Views: 388.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:50:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/login Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/login" for ::1 at 2019-07-07 18:50:08 +0800 ActionController::RoutingError (No route matches [GET] "/login"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (29.9ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:50:49 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `params' for #): config/initializers/intro.rb:20:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.3ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:51:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `params' for #): config/initializers/intro.rb:20:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.1ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:51:16 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `params' for #): config/initializers/intro.rb:20:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.1ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:53:19 +0800 Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) ArgumentError (wrong number of arguments (1 for 0)): config/initializers/intro.rb:20:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.2ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:54:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) ArgumentError (wrong number of arguments (1 for 0)): config/initializers/intro.rb:20:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.7ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:54:46 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) ArgumentError (wrong number of arguments (1 for 0)): config/initializers/intro.rb:20:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:55:14 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) ArgumentError (wrong number of arguments (1 for 0)): config/initializers/intro.rb:20:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:56:26 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 285ms (Views: 284.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:57:16 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 18:57:16 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (9.7ms) Completed 200 OK in 324ms (Views: 323.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 18:57:21 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin?username=1" for ::1 at 2019-07-07 18:57:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"username"=>"1"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 46ms (Views: 45.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 19:06:48 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) ArgumentError (wrong number of arguments (1 for 0)): config/initializers/intro.rb:19:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.7ms) Started GET "/intro/admin" for ::1 at 2019-07-07 19:10:35 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 166896ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 19:13:22 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (39.1ms) Completed 200 OK in 1667ms (Views: 381.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 19:13:52 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (16.8ms) Completed 200 OK in 377960ms (Views: 322.6ms | ActiveRecord: 1.1ms) Started GET "/intro/admin" for ::1 at 2019-07-07 19:20:22 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `current_user' for #): config/initializers/intro.rb:19:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.3ms) Started GET "/intro/admin" for ::1 at 2019-07-07 19:32:50 +0800 Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `current_user' for #): config/initializers/intro.rb:19:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.9ms) Started GET "/intro/admin" for ::1 at 2019-07-07 19:32:58 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NameError (undefined local variable or method `current_user' for #): config/initializers/intro.rb:19:in `block (2 levels) in ' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.9ms) Started GET "/intro/admin" for ::1 at 2019-07-07 21:44:58 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 6ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 21:44:58 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (5.0ms) Completed 200 OK in 321ms (Views: 320.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 21:45:03 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/BXPc3LpQrVfKuYGWFzIM9MJkx/LD8epGxiUjRJQkosBS89mTIZctUsoThBxaHiMTPEYulI/vuZXB3Fgcvi5Mw==", "username"=>"brabr", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 27ms (Views: 25.1ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 21:45:24 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"pxO4frqthILiIBtMYIb3bWeX+aNfT3GMbuKU2hOjAx5aTbhrhMKagvYis1pJskfS+G9yBsZ/CMMi/XE3cwsopg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 21:45:24 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.6ms) Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-07 21:45:28 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 29ms (Views: 27.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 21:45:31 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admi" for ::1 at 2019-07-07 21:45:31 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admi"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.1ms) Started GET "/intro/admin" for ::1 at 2019-07-07 23:55:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 23:55:16 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.2ms) Completed 200 OK in 38ms (Views: 35.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 23:55:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 32ms (Views: 30.0ms | ActiveRecord: 0.0ms) Started GET "/intro" for ::1 at 2019-07-07 23:55:30 +0800 ActionController::RoutingError (No route matches [GET] "/intro"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (51.8ms) Started GET "/intro/admin" for ::1 at 2019-07-07 23:55:35 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.2ms) Completed 200 OK in 33ms (Views: 31.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 23:56:06 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 32ms (Views: 30.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-07 23:56:39 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 23578ms (Views: 31.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/" for ::1 at 2019-07-07 23:57:27 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 23:57:27 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/body.self-e9678b6e15db6bc9ff6ddf56539fdf416db985fca8fac22f4ceb97af1f75d8d7.css?body=1" for ::1 at 2019-07-07 23:57:27 +0800 Started GET "/assets/intro/admin/overrides/form.self-6edb4163204d0c7ac5d7f219bd05c69f9b8aaaac08b11d7830dcb55576707dcf.css?body=1" for ::1 at 2019-07-07 23:57:27 +0800 Started GET "/assets/intro/admin/sessions.self-ea079dcacdbecdb4609e5cc55ff38aa880b77210f69455298a2a6957409a774b.css?body=1" for ::1 at 2019-07-07 23:57:27 +0800 Started GET "/intro/admin" for ::1 at 2019-07-07 23:57:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 23:57:56 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 23:58:14 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JPqXHXwgJSTX7B4mBg70V6fUnk8JR1ZE0YRhhbixhuHIxUgbBYQE+rzLZQFb2Hbb2qOV8wAGcP4qmtqoFDuZWg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.6ms) Completed 200 OK in 30ms (Views: 27.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 23:58:31 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JPqXHXwgJSTX7B4mBg70V6fUnk8JR1ZE0YRhhbixhuHIxUgbBYQE+rzLZQFb2Hbb2qOV8wAGcP4qmtqoFDuZWg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 89ms (Views: 88.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-07-07 23:58:31 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 23:58:38 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KsJw+1b7tT+AbdSe47P7qk7c9PcU4N+qo5Phy0muyX3G/a/9L1+U4etKr7m+ZXkmM6v/Sx2h+RBYjVrm5STWxg==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 34ms (Views: 31.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-07 23:58:43 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 32ms (Views: 30.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-07 23:58:50 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"OgGtUVo1TGZgPkC+5hDLv5/tnR0wgOycY1avsGXQYt7WPnJXI5FtuAsZO5m7xkkz4pqWoTnByiaYSBSdyVp9ZQ==", "username"=>"brba", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.1ms) Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-07-08 21:10:21 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (1.9ms) Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms) Started GET "/admin" for ::1 at 2019-07-08 21:10:26 +0800 ActionController::RoutingError (No route matches [GET] "/admin"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (31.5ms) Started GET "/intro/admin" for ::1 at 2019-07-08 21:10:33 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/session/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/session/new" for ::1 at 2019-07-08 21:10:33 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (7.0ms) Completed 200 OK in 325ms (Views: 323.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/session" for ::1 at 2019-07-08 21:10:54 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ovDsq/M42jtmjo/uZ1O2jbuPbLTz4gtX/XKRN91riBJOzzOtipz75Q2p9Mk6hTQBxvhnCPqjLe0GbCoaceGXqQ==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.7ms) Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/session" for ::1 at 2019-07-08 21:11:10 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TnijYvZfaltyANyf4+neOSpOJ62PSaA25M33WdRWeImiR3xkj/tLhRknp7i+P1y1VzksEYYIhowf00x0eNxnMg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 21:11:10 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.2ms) Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-08 21:11:31 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions/new"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.4ms) Started GET "/intro/admin/session/new" for ::1 at 2019-07-08 21:11:35 +0800 Processing by Intro::Admin::SessionsController#new as HTML Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :unauthenticate rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 21:11:35 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.0ms) Started DELETE "/intro/admin/session" for ::1 at 2019-07-08 21:14:03 +0800 Processing by Intro::Admin::SessionsController#destroy as */* Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.6ms) Started DELETE "/intro/admin/session" for ::1 at 2019-07-08 21:14:07 +0800 Processing by Intro::Admin::SessionsController#destroy as */* Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 21:14:11 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.1ms) Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 21:20:58 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-08 21:20:58 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.6ms) Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) ActionView::Template::Error (can not load translations from /home/jinhu/Repos/intro/spec/dummy/config/locales/en.yml: #): 3:
4:
5:
6: <%= intro_translate('admin.title') %> 7:
8: 9: <%= form_tag admin_sessions_path, method: :post, class: 'intro-admin__form' do %> i18n (0.9.5) lib/i18n/backend/base.rb:232:in `rescue in load_yml' i18n (0.9.5) lib/i18n/backend/base.rb:229:in `load_yml' i18n (0.9.5) lib/i18n/backend/base.rb:213:in `load_file' i18n (0.9.5) lib/i18n/backend/base.rb:15:in `block in load_translations' i18n (0.9.5) lib/i18n/backend/base.rb:15:in `each' i18n (0.9.5) lib/i18n/backend/base.rb:15:in `load_translations' i18n (0.9.5) lib/i18n/backend/simple.rb:63:in `init_translations' i18n (0.9.5) lib/i18n/backend/simple.rb:46:in `available_locales' i18n (0.9.5) lib/i18n/config.rb:43:in `available_locales' i18n (0.9.5) lib/i18n/config.rb:49:in `available_locales_set' i18n (0.9.5) lib/i18n.rb:289:in `locale_available?' i18n (0.9.5) lib/i18n.rb:295:in `enforce_available_locales!' i18n (0.9.5) lib/i18n.rb:163:in `translate' /home/jinhu/Repos/intro/app/controllers/intro/application_controller.rb:10:in `intro_translate' actionpack (4.2.11.1) lib/abstract_controller/helpers.rb:67:in `intro_translate' /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb:6:in `__home_jinhu__epos_intro_app_views_intro_admin_sessions_new_html_erb___1857321505293420321_69996048202500' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.6ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-08 21:21:27 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (6.1ms) Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 21:21:31 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+prvbpJeeVTXK730HHZF1cUN2K6mnibFyo7hZ2xSkzvVAlk5SIocyzi1vTIZ1CtaIdfFsh7Zzdi9DLFhSkRi4w==", "username"=>"brab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 21:21:34 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TwRBRc2Zo7jnAcHmVPiybiHgPn8WJ7t+W8vxjzj8kC9gnPcSF03GJwifwSBRWtzhxTojY65gUGMsSaGJHuph9w==", "username"=>"brbabrab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 21:59:43 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TwRBRc2Zo7jnAcHmVPiybiHgPn8WJ7t+W8vxjzj8kC9gnPcSF03GJwifwSBRWtzhxTojY65gUGMsSaGJHuph9w==", "username"=>"brbabrab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.6ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 22:00:23 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TwRBRc2Zo7jnAcHmVPiybiHgPn8WJ7t+W8vxjzj8kC9gnPcSF03GJwifwSBRWtzhxTojY65gUGMsSaGJHuph9w==", "username"=>"brbabrab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.7ms) Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 22:03:28 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TwRBRc2Zo7jnAcHmVPiybiHgPn8WJ7t+W8vxjzj8kC9gnPcSF03GJwifwSBRWtzhxTojY65gUGMsSaGJHuph9w==", "username"=>"brbabrab", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 15ms (Views: 10.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 22:03:47 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/En3HlhHRqSd/f6RLMCuRwe6i2xrdRweghyIna7mTuDT0UFJgpMjO3Jj/lcpYsDI42CWcNMy9wP1ntibiPC/OA==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:03:47 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (2.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `page' for #): activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:136:in `method_missing' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:99:in `method_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:11:in `index' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.4ms) Intro::Tour Load (3.1ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:11:10 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `page' for #): activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:136:in `method_missing' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:99:in `method_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:11:in `index' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:11:11 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `page' for #): activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:136:in `method_missing' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:99:in `method_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:11:in `index' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.6ms) Intro::Tour Load (1.1ms) SELECT "intro_tours".* FROM "intro_tours" LIMIT 25 OFFSET 0 Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:11:31 +0800 ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.0ms) Completed 500 Internal Server Error in 32ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Missing partial intro/admin/trous/_container with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/home/jinhu/Repos/intro/spec/dummy/app/views" * "/home/jinhu/.rvm/gems/ruby-2.1.9/gems/kaminari-core-1.1.1/app/views" * "/home/jinhu/Repos/intro/app/views" ): 1: <%- content_for :doc_title, intro_translate('admin.tour_list') %> 2: <%- content_for :box_class, 'intro-admin__box-tours' %> 3: 4: <%= render layout: 'intro/admin/trous/container' do %> 5: hello world 6: <% end %> actionview (4.2.11.1) lib/action_view/path_set.rb:46:in `find' actionview (4.2.11.1) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:4:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__1713360220531448377_47307635272680' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:11:55 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 312ms (Views: 310.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:17:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (0.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.3ms) Completed 200 OK in 47ms (Views: 43.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-c3011fcffcb6f0f6fbf3f25a268be113c54b44e7d2fa8c98ef709ee17c682fd6.css?body=1" for ::1 at 2019-07-08 22:17:56 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:21:02 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (0.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-ece6b0c34aeaa4233a7294de43a192e6250224bbd69b6e946b38aea71bd470d6.css?body=1" for ::1 at 2019-07-08 22:21:02 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:22:26 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (0.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (1.3ms) Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/link.self-5c92034e623bd8394185a580843b480ace35f759fa6d63604de4df2c5c5c62ca.css?body=1" for ::1 at 2019-07-08 22:22:26 +0800 Started GET "/intro/admin/sessions/sign_out" for ::1 at 2019-07-08 22:22:29 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions/sign_out"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (45.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (63.3ms) Started GET "/intro/admin/sessions/sign_out" for ::1 at 2019-07-08 22:24:45 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/sessions/sign_out"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.5ms) Started GET "/intro/admin" for ::1 at 2019-07-08 22:24:51 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (0.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.3ms) Completed 200 OK in 19ms (Views: 15.8ms | ActiveRecord: 0.0ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-08 22:24:53 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Cj50ho/2Ph4mqBufuBfKeV1Vfw3NEtKDtWgA7odIZvolpsLRVSJbgck2G1m9taT2uY9iEXVVOZ7C6lDooV6XIg==", "commit"=>"Sign out"} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-08 22:24:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 22:27:08 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ce/mjPgRyMUtd5E2wA26ouVqyexBTMn2heDTXLhZEAZed1DbIsWtWsLpkfDFr9QtAbDU8PkLIuvyYoNank/h3g==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:27:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:27:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.4ms) Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:29:49 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (0.7ms) Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:8: syntax error, unexpected keyword_end end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:9: syntax error, unexpected keyword_ensure, expecting keyword_end /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:11: syntax error, unexpected end-of-input, expecting keyword_end): /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:8: syntax error, unexpected keyword_end end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:9: syntax error, unexpected keyword_ensure, expecting keyword_end /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:11: syntax error, unexpected end-of-input, expecting keyword_end actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:30:05 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.7ms) Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.0ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-08 22:30:35 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"opqdVvq3nOtD95cF7zP0Of1Hdl0jle4Mg2BGOAvdTsmNAisBIGP5dKxpl8PqkZq2GZ1rQZvSBRH04hY+Lcu/EQ==", "commit"=>"Sign out"} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-08 22:30:35 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (3.3ms) Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 22:30:38 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FziYh8uk7qBl/aywyHFjNdtu+RvBJ+bNJCjui/fj+/k4oC7QEXCLP4pjrHbN0w26P7TkB3lgDdBTqr6N0fUKIQ==", "username"=>"WRDkzl4b", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 22:30:40 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"zCEZWur5IiiPmxM8itTrq8RCxR+LAf6Eei02zShjdbjjua8NMC1Ht2AFE/qPdoUkIJjYAzNGFZkNr2bLDnWEYA==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 22:30:40 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.6ms) Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms) Started GET "/_routes" for ::1 at 2019-07-08 22:36:08 +0800 ActionController::RoutingError (No route matches [GET] "/_routes"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.6ms) Started GET "/routes_info" for ::1 at 2019-07-08 22:36:18 +0800 ActionController::RoutingError (No route matches [GET] "/routes_info"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.9ms) Started GET "/routes" for ::1 at 2019-07-08 22:36:23 +0800 ActionController::RoutingError (No route matches [GET] "/routes"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.4ms) Started GET "/routes" for ::1 at 2019-07-08 22:38:02 +0800 ActionController::RoutingError (No route matches [GET] "/routes"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.6ms) Started GET "/rails/info/routes" for ::1 at 2019-07-08 22:38:09 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (6.8ms) Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-07-08 22:39:48 +0800 Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (0.8ms) Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-08 22:39:52 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (10.0ms) Completed 200 OK in 37ms (Views: 30.8ms | ActiveRecord: 0.6ms) Started GET "/intro/admin" for ::1 at 2019-07-08 23:07:47 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.0ms) Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/overrides/link.self-97428ca4ff80ca706c9a24fa8d15b9d86223fe06944d62c3471b37280d85ec62.css?body=1" for ::1 at 2019-07-08 23:07:47 +0800 Started GET "/intro/admin" for ::1 at 2019-07-08 23:09:22 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (3.8ms) Completed 200 OK in 22ms (Views: 17.1ms | ActiveRecord: 0.4ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-08 23:09:23 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WUXN7qwqk4Tu2uIKhn44di3//xMPSMAT57U5XQk/3+d23Xu5dv72GwFE4syD3Fb5ySXiD7cPKw6QN2lbLykuPw==", "commit"=>"Sign out"} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-08 23:09:23 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.9ms) Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 23:09:25 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"y4+7iwczI/8OIIvdP5N37QuCVpnZOys0aH5GeHTRLrPkFw3c3edGYOG+ixs6MRli71hLhWF8wCkf/BZ+Usffaw==", "username"=>"WRDkzl42", "password"=>"[FILTERED]", "commit"=>"Sign in"} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 23:09:26 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Fl7c5M0wveqeM/gtVZky1n2HoKs/T4wfXYp2DQNDjz85xmqzF+TYdXGt+OtQO1xZmV29t4cIZwIqCCYLJVV+5w==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 23:09:26 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.3ms) Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 23:35:39 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.4ms) Completed 200 OK in 31ms (Views: 24.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 23:36:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.8ms) Completed 200 OK in 26ms (Views: 20.1ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-08 23:36:21 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"AQgPStu7Prj2DlR2s0Ze5Q3kKNdGz5cQuWPwIQ3N2qUukLkdAW9bJxmQVLC25DBq6T41y/6IfA3O4aAnK9srfQ==", "commit"=>"Sign out"} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-08 23:36:21 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 23:36:22 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rTbsacibkRPecsPvWh/qJfURmf1lCXzWKPrEenqLglCCrlo+Ek/0jDHswylfvYSqEcuE4d1Ol8tfeJR8XJ1ziA==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 23:36:22 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.5ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 23:38:19 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.1ms) Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.3ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-08 23:38:24 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"o6YjNMWLT1SsImxfGtxIXgxhCpsaAyzvp44mx7aX0XuMPpVjH18qy0O8bJkffibR6LsXh6JEx/LQDHbBkIEgow==", "commit"=>"Sign out"} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-08 23:38:24 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.2ms) Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-08 23:38:26 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"4xmzmnj+LaaANxTGjFIOA4NPVLQgJQbIUvyvD6D9gXrMgQXNoipIOW+pFACJ8GCMZ5VJqJhi7dUlfv8Jhutwog==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-08 23:38:26 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.2ms) Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-07-09 21:22:18 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (1.4ms) Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms) Started GET "/admin" for ::1 at 2019-07-09 21:22:24 +0800 ActionController::RoutingError (No route matches [GET] "/admin"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.6ms) Started GET "/intro/admin" for ::1 at 2019-07-09 21:22:28 +0800 Processing by Intro::Admin::ToursController#index as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (23.8ms) Completed 500 Internal Server Error in 59ms (ActiveRecord: 0.0ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:13: syntax error, unexpected keyword_class, expecting ')' ...min_path, method: :delete class: 'intro-admin__sign-out-butt... ... ^): /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:13: syntax error, unexpected keyword_class, expecting ')' ...min_path, method: :delete class: 'intro-admin__sign-out-butt... ... ^ actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:8:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__3381326578912299780_47326000744400' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.8ms) Started GET "/intro/admin" for ::1 at 2019-07-09 21:22:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (10.9ms) Completed 500 Internal Server Error in 362ms (ActiveRecord: 0.8ms) ActionView::Template::Error (couldn't find file 'rails-ujs' with type 'application/javascript' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets): 3: 4: 5: <%= [yield(:doc_title).presence, t('intro.admin.title')].compact.join(' · ') %> 6: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 7: <%= javascript_include_tag "intro/admin/application" %> 8: <%= csrf_meta_tags %> 9: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/javascripts/intro/admin/application.js:1 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:6:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__1449001076321671053_47326000711160' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.8ms) Started GET "/intro/admin" for ::1 at 2019-07-09 21:24:03 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (35.3ms) Completed 200 OK in 415ms (Views: 403.3ms | ActiveRecord: 0.3ms) Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-07-09 21:24:03 +0800 Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-09 21:24:06 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"0q3aB9vkghtiMLyckuH8jvfzID2yTLCWNKq7CKsLu3f9NWxQATDnhI2uvFqXQ5IBEyk9IQoLW4tDKOsOjR1Krw=="} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-09 21:24:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.6ms) Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-09 21:24:08 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"zEMKMQdQtgB1w77zinJSFwbK+61bW6Vz64bNgtkrmz7j27xm3YTTn5pdvjWP0DyY4hDmseMcTm6cBJ2E/z1q5g==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:24:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 46ms (Views: 43.6ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:25:45 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.5ms) Completed 200 OK in 78ms (Views: 76.1ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-0a2a3b1c8a73ccbdb15bf67d59c57bff897f4659e770d9cd22cd7363e35f1217.css?body=1" for ::1 at 2019-07-09 21:25:45 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:25:47 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.8ms) Completed 200 OK in 105ms (Views: 102.7ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:26:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.1ms) Completed 200 OK in 43ms (Views: 40.8ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:26:21 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.3ms) Completed 200 OK in 56ms (Views: 54.9ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-fa65d8c6d91e1610db11f26495a7a16f6d9fcae1a61628e65f97d113f87fd4e7.css?body=1" for ::1 at 2019-07-09 21:26:21 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:27:09 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.6ms) Completed 500 Internal Server Error in 60ms (ActiveRecord: 0.5ms) ActionView::Template::Error (Undefined variable: "$border-color".): 3: 4: 5: <%= [yield(:doc_title).presence, t('intro.admin.title')].compact.join(' · ') %> 6: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 7: <%= javascript_include_tag "intro/admin/application" %> 8: <%= csrf_meta_tags %> 9: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/tours.scss:10 sass (3.7.4) lib/sass/script/tree/variable.rb:49:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `block in _perform' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `map' sass (3.7.4) lib/sass/script/tree/list_literal.rb:75:in `_perform' sass (3.7.4) lib/sass/script/tree/node.rb:50:in `perform' sass (3.7.4) lib/sass/tree/visitors/perform.rb:398:in `visit_prop' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:6:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb__2902743253105613086_47211737237960' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:27:39 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.2ms) Completed 200 OK in 81ms (Views: 78.2ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-3c79af1becf345e8e81f56ca59433ede41f2bb1f3970b30d4af98c7262d458a5.css?body=1" for ::1 at 2019-07-09 21:27:39 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:27:47 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.9ms) Completed 200 OK in 78ms (Views: 75.5ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-eb5534138ededbbc40dc03446ac12066ebc352c78a4921c6051e02b1395da381.css?body=1" for ::1 at 2019-07-09 21:27:47 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:28:01 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.8ms) Completed 200 OK in 84ms (Views: 81.3ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/tours.self-e6d364e2e9bec4223c8ea7da9e12e6f2b68c71c05436b530fed5ac62fbad45f4.css?body=1" for ::1 at 2019-07-09 21:28:01 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:28:07 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.0ms) Completed 200 OK in 92ms (Views: 89.9ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-12014913d9c6d30d3ec6b52431cbc0a830948905e6684e1badfca96977a19016.css?body=1" for ::1 at 2019-07-09 21:28:07 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:28:13 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.4ms) Completed 200 OK in 75ms (Views: 72.5ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-63bea44392039871ecabbfafa9e8429c0deeae262e91d0b27e2119518fa35967.css?body=1" for ::1 at 2019-07-09 21:28:13 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:28:19 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.6ms) Completed 200 OK in 88ms (Views: 85.8ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-cabbc968dd9e51114e649dd0f4171de711a5ea484e4f8a972ca9e8256f13df74.css?body=1" for ::1 at 2019-07-09 21:28:19 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:28:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (4.0ms) Completed 200 OK in 47ms (Views: 43.9ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-78f0792f0434c6db2f92358c16631b8413a6fd026e62af59c71f1939fec13f3a.css?body=1" for ::1 at 2019-07-09 21:28:25 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:28:41 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.2ms) Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-a4ce21953833ff1fe62f90fdd3b5d9f60e66a38dc69590f353448c57458fb9f3.css?body=1" for ::1 at 2019-07-09 21:28:41 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:34:27 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.4ms) Completed 200 OK in 126ms (Views: 123.9ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/overrides/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-07-09 21:34:28 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:34:49 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.2ms) Completed 200 OK in 69ms (Views: 66.9ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-368ed127905f92607334c23c8b4c2606175740fc20adf0f973b305d43985b910.css?body=1" for ::1 at 2019-07-09 21:34:49 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:34:57 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.2ms) Completed 200 OK in 90ms (Views: 87.9ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-a9f79ad030d745494dd27b336dca8b7267718014e6d36fe0fcd2437e6641ca86.css?body=1" for ::1 at 2019-07-09 21:34:58 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:35:05 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.5ms) Completed 200 OK in 95ms (Views: 92.9ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/tours.self-253f5a1226bf38acf3338bd42c34824180a4522ea83b24fa45d7d49768823afa.css?body=1" for ::1 at 2019-07-09 21:35:05 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:35:11 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.5ms) Completed 200 OK in 89ms (Views: 87.1ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/tours.self-e6af7a4da4a9dcdf1409b5ca63dd3071326b02042a718669fe686d75b2bfa268.css?body=1" for ::1 at 2019-07-09 21:35:11 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:36:06 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 82ms (Views: 79.7ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-d939c14beb9b53a4c9b8e1c83a3dd8dfebe901903280cb3901d99f8c5f7878ae.css?body=1" for ::1 at 2019-07-09 21:36:06 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:36:07 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.4ms) Completed 200 OK in 51ms (Views: 48.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:36:50 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.0ms) Completed 200 OK in 86ms (Views: 83.4ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/tours.self-787aaf69cf1834e0f1fb0877ddbc946d3b3702d67107752d9262afd6d64e7566.css?body=1" for ::1 at 2019-07-09 21:36:50 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:37:19 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.3ms) Completed 200 OK in 84ms (Views: 81.4ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-d8f65cd1e6a4aeed425ceb405cb1ceb1219e1558a5fbc5e2892434611944fb23.css?body=1" for ::1 at 2019-07-09 21:37:19 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:37:20 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.9ms) Completed 200 OK in 62ms (Views: 58.4ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:37:26 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.4ms) Completed 200 OK in 90ms (Views: 87.7ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-071880d46c614ddc977d77b0348f6bafb8b54c0b4b91da349fd035221a94e232.css?body=1" for ::1 at 2019-07-09 21:37:26 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:37:33 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (3.1ms) Completed 200 OK in 44ms (Views: 43.1ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-13a4dcc4aecee148afcd53abb6a08c1f33151e0d05d98bc16e41eab6534adbda.css?body=1" for ::1 at 2019-07-09 21:37:33 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:37:34 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.4ms) Completed 200 OK in 103ms (Views: 100.7ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:37:42 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (3.5ms) Completed 200 OK in 69ms (Views: 67.1ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-42d0da56acb36ef7b5ddd42e1417022a6d7720901831106c43fe51270fa7a797.css?body=1" for ::1 at 2019-07-09 21:37:42 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:41:41 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.3ms) Completed 200 OK in 58ms (Views: 56.3ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-10c0f000b5cd621bfd229e17f41a909489725e514785ad484e40015546b39963.css?body=1" for ::1 at 2019-07-09 21:41:41 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:41:46 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.7ms) Completed 200 OK in 95ms (Views: 93.1ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-d711a88dafbb005e96341321169baf7f963bf503a3e8dda28c752b56b6d24cbf.css?body=1" for ::1 at 2019-07-09 21:41:46 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:41:52 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.8ms) Completed 200 OK in 95ms (Views: 92.5ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-4f125b451648daeb24e79228e04779c0190981a9b3be4c6183cd078321e78f44.css?body=1" for ::1 at 2019-07-09 21:41:52 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:42:02 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.6ms) Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/tours.self-77b64066b620274de675686e38f909ba7c13d82ffa9208521073adc9c3fa0757.css?body=1" for ::1 at 2019-07-09 21:42:02 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:42:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.9ms) Completed 200 OK in 51ms (Views: 47.9ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:42:09 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.4ms) Completed 200 OK in 65ms (Views: 62.0ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-fe44280b1c969b517f34e9f818e44e7ee59069e34d310193edcf7984dd85e6db.css?body=1" for ::1 at 2019-07-09 21:42:09 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:45:31 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.4ms) Completed 200 OK in 54ms (Views: 52.0ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/tours.self-08cc80348fdc5f43e42ca88e2d2c16dc58a36acadfb3bb3630488657ceba0fe7.css?body=1" for ::1 at 2019-07-09 21:45:31 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:45:48 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.4ms) Completed 200 OK in 93ms (Views: 90.4ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/tours.self-366e4117da5e0d60c50ea1ee51d9ff97bc3430e3e4aab067a1a92d2e78745fb4.css?body=1" for ::1 at 2019-07-09 21:45:48 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:46:05 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.5ms) Completed 200 OK in 74ms (Views: 72.2ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-db3f53d54f98107ab6b836852da44970e151e36d35427862fb2f73fce5ae1fb2.css?body=1" for ::1 at 2019-07-09 21:46:05 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 21:47:14 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.5ms) Completed 200 OK in 35ms (Views: 28.1ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 21:47:16 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.2ms) Completed 200 OK in 69ms (Views: 46.4ms | ActiveRecord: 1.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 21:49:20 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (4.6ms) Completed 200 OK in 43ms (Views: 41.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 21:51:17 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 50ms (Views: 47.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 21:51:32 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.2ms) Completed 200 OK in 42ms (Views: 40.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 21:51:36 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (0.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.8ms) Completed 200 OK in 47ms (Views: 45.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 22:28:19 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.1ms) Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.9ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1: syntax error, unexpected $undefined, expecting '}' ...);@output_buffer.safe_append='\' } do |f| %> ... ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:17: syntax error, unexpected keyword_end, expecting ')' '.freeze; end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:18: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:20: syntax error, unexpected keyword_end, expecting ')'): /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1: syntax error, unexpected $undefined, expecting '}' ...);@output_buffer.safe_append='\' } do |f| %> ... ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:17: syntax error, unexpected keyword_end, expecting ')' '.freeze; end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:18: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:20: syntax error, unexpected keyword_end, expecting ')' actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:6:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__1806145718817519966_69848436190540' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___1829634520590522295_69848436972560' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:5:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__1806145718817519966_69848436190540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (20.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 22:28:33 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (30.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.2ms) Completed 500 Internal Server Error in 45ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined local variable or method `url' for #<#:0x007f0db74b1cb8>): 1: <%= form_for @tour, url: url, html: { class: 'intro-admin__tour-form' } do |f| %> 2: <% if @tour.errors.any? %> 3:
4:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__3536139320436994790_69848286291080' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:6:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__1806145718817519966_69848436190540' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___1829634520590522295_69848436972560' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:5:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__1806145718817519966_69848436190540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.6ms) Started GET "/rails/info/routes" for ::1 at 2019-07-09 22:28:53 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (17.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (34.2ms) Completed 200 OK in 46ms (Views: 46.0ms | ActiveRecord: 0.0ms) Started GET "/rails/info/routes" for ::1 at 2019-07-09 22:40:32 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (12.4ms) Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) Started GET "/rails/info/routes" for ::1 at 2019-07-09 22:40:56 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (15.7ms) Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms) Started GET "/rails/info/routes" for ::1 at 2019-07-09 22:40:58 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (13.4ms) Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-09 22:44:52 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (12.5ms) Completed 200 OK in 338ms (Views: 317.6ms | ActiveRecord: 0.5ms) Started GET "/intro/admin" for ::1 at 2019-07-09 23:02:58 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (10.2ms) Completed 200 OK in 38ms (Views: 28.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:03:00 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (38.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (46.5ms) Completed 500 Internal Server Error in 75ms (ActiveRecord: 0.8ms) ActionView::Template::Error (undefined method `checkbox_tag' for #<#:0x007f949b006658>): 20: 21:
22:
23: <%= checkbox_tag :strict_route, 1, @tour.strict_route? %> 24: <%= label_tag :strict_route, t('intro.admin.placeholders.strict_route') %> 25:
26:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:23:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__2953065166062334850_70138116298680' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__2953065166062334850_70138116298680' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:6:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___404000947428234831_70138116218240' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3100568680617036130_47425043440740' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:5:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___404000947428234831_70138116218240' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:03:26 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 49ms (Views: 48.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:03:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.9ms) Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:05:46 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.7ms) Completed 200 OK in 68ms (Views: 66.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:05:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.4ms) Completed 200 OK in 57ms (Views: 55.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:06:26 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.0ms) Completed 200 OK in 36ms (Views: 34.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:14:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.9ms) Completed 200 OK in 58ms (Views: 56.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-c697adac578d555bdd9fb543a703c7ca063552f492e557fe77b944aaa13a69e7.css?body=1" for ::1 at 2019-07-09 23:14:14 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:14:15 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.9ms) Completed 200 OK in 69ms (Views: 66.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:14:20 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.2ms) Completed 200 OK in 92ms (Views: 90.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-eab7f183d4fcd2c649ead703c71ee962f848f5eb8445e0687fe57e2ab4d24334.css?body=1" for ::1 at 2019-07-09 23:14:21 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:14:29 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.6ms) Completed 200 OK in 96ms (Views: 94.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-02da3d145c78842086b0db01d6f43bc3fb6dc5f94c7dcf40cfc0f99c5e5c4baf.css?body=1" for ::1 at 2019-07-09 23:14:29 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:16:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 79ms (Views: 78.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-bd33adafbabe179ca442f34607e848b02f6b3c43e9dd845e6b95c7003665e0a4.css?body=1" for ::1 at 2019-07-09 23:16:24 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-09 23:17:34 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.2ms) Completed 200 OK in 48ms (Views: 44.7ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:17:38 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.2ms) Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 23:17:41 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.4ms) Completed 200 OK in 72ms (Views: 68.6ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:17:42 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.9ms) Completed 200 OK in 54ms (Views: 52.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:18:41 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.7ms) Completed 200 OK in 53ms (Views: 50.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 23:18:50 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.9ms) Completed 200 OK in 58ms (Views: 55.6ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:18:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.7ms) Completed 200 OK in 47ms (Views: 46.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-09 23:20:49 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (8.3ms) Completed 200 OK in 54ms (Views: 50.9ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-09 23:20:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.7ms) Completed 200 OK in 66ms (Views: 64.2ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-07-16 15:47:39 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (1.3ms) Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-16 15:47:44 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 341ms (Views: 328.0ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/overrides/form.self-6edb4163204d0c7ac5d7f219bd05c69f9b8aaaac08b11d7830dcb55576707dcf.css?body=1" for ::1 at 2019-07-16 15:47:44 +0800 Started GET "/assets/intro/admin/tours.self-bd33adafbabe179ca442f34607e848b02f6b3c43e9dd845e6b95c7003665e0a4.css?body=1" for ::1 at 2019-07-16 15:47:44 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-07-16 15:47:44 +0800 Started GET "/intro/admin" for ::1 at 2019-07-16 15:55:51 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.2ms) Completed 200 OK in 49ms (Views: 46.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/overrides/link.self-492c10c247d90b21a7796a77f4b4fab6014cca20b21e37f110b564dc899a188b.css?body=1" for ::1 at 2019-07-16 15:55:51 +0800 Started GET "/" for ::1 at 2019-07-18 15:43:19 +0800 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (3.9ms) Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-07-18 15:43:22 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 10ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 15:43:22 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (7.9ms) Completed 200 OK in 371ms (Views: 369.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-6edb4163204d0c7ac5d7f219bd05c69f9b8aaaac08b11d7830dcb55576707dcf.css?body=1" for ::1 at 2019-07-18 15:43:23 +0800 Started GET "/assets/intro/admin/tours.self-bd33adafbabe179ca442f34607e848b02f6b3c43e9dd845e6b95c7003665e0a4.css?body=1" for ::1 at 2019-07-18 15:43:23 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-07-18 15:43:23 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 15:43:25 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"v+P2rJVzJyV3Ov0B9OWInvjTWSqKmFMpT7oAuAGdDQaJUzA6l9rmeLyUvary0hbonboBHzLQA6/O088VxL4YHw==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 15:43:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.6ms) Completed 200 OK in 47ms (Views: 30.6ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 15:43:28 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (28.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.2ms) Completed 200 OK in 86ms (Views: 65.2ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 15:43:53 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.0ms) Completed 200 OK in 393ms (Views: 351.0ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/overrides/form.self-6edb4163204d0c7ac5d7f219bd05c69f9b8aaaac08b11d7830dcb55576707dcf.css?body=1" for ::1 at 2019-07-18 15:43:53 +0800 Started GET "/assets/intro/admin/overrides/body.self-e9678b6e15db6bc9ff6ddf56539fdf416db985fca8fac22f4ceb97af1f75d8d7.css?body=1" for ::1 at 2019-07-18 15:43:53 +0800 Started GET "/assets/intro/admin/overrides/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-07-18 15:43:53 +0800 Started GET "/assets/intro/admin/tours.self-bd33adafbabe179ca442f34607e848b02f6b3c43e9dd845e6b95c7003665e0a4.css?body=1" for ::1 at 2019-07-18 15:43:53 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-07-18 15:43:53 +0800 Started GET "/assets/intro/admin/application.self-f9ecc503685523b804a0f02a2ae501bb190b025b8354ec053661d70988296034.css?body=1" for ::1 at 2019-07-18 15:43:53 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-07-18 15:43:53 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-07-18 15:43:53 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 15:53:10 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.8ms) Completed 200 OK in 165ms (Views: 163.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-818c535ef39d735b4305807b9a46dac9b1c7e7046d607e3bba452d3b12c660ae.css?body=1" for ::1 at 2019-07-18 15:53:11 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 15:56:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.2ms) Completed 200 OK in 82ms (Views: 80.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-ee32af35ed5b523636a348ddf720083d2cdf586dffee7de01fa53309dbb6d778.css?body=1" for ::1 at 2019-07-18 15:56:06 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 15:56:07 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 60ms (Views: 58.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 15:56:57 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.6ms) Completed 200 OK in 153ms (Views: 151.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-91098aec21cd3c42d516b38614f19bf25aa7f91f1cd564d49326e650f7620e09.css?body=1" for ::1 at 2019-07-18 15:56:57 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:00:11 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (3.0ms) Completed 200 OK in 85ms (Views: 85.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-0ab19e93c9e4854f29b6154454265f04927d06f9eedf515b23dd868edb71039c.css?body=1" for ::1 at 2019-07-18 16:00:11 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:01:33 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.8ms) Completed 200 OK in 109ms (Views: 107.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-8b73056ec0c44f111e446deb23c2d4068781cac011f294b5aa3cf0e73b9fb99b.css?body=1" for ::1 at 2019-07-18 16:01:33 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:02:50 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.7ms) Completed 500 Internal Server Error in 107ms (ActiveRecord: 0.0ms) ActionView::Template::Error (Invalid CSS after "input:not(type": expected ")", was "='checkbox'), t..."): 3: 4: 5: <%= [yield(:doc_title).presence, t('intro.admin.title')].compact.join(' · ') %> 6: <%= stylesheet_link_tag "intro/admin/application", media: "all" %> 7: <%= javascript_include_tag "intro/admin/application" %> 8: <%= csrf_meta_tags %> 9: <%= yield(:head_content) %> /home/jinhu/Repos/intro/app/assets/stylesheets/intro/admin/overrides/form.scss:4 sass (3.7.4) lib/sass/scss/parser.rb:1308:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1238:in `expected' sass (3.7.4) lib/sass/scss/parser.rb:1233:in `tok!' sass (3.7.4) lib/sass/scss/static_parser.rb:296:in `pseudo' sass (3.7.4) lib/sass/scss/static_parser.rb:163:in `simple_selector_sequence' sass (3.7.4) lib/sass/scss/static_parser.rb:108:in `selector' sass (3.7.4) lib/sass/scss/static_parser.rb:83:in `selector_comma_sequence' sass (3.7.4) lib/sass/scss/parser.rb:1216:in `expr!' sass (3.7.4) lib/sass/scss/static_parser.rb:20:in `parse_selector' sass (3.7.4) lib/sass/tree/visitors/perform.rb:434:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `map' sass (3.7.4) lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:438:in `visit_rule' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.7.4) lib/sass/stack.rb:79:in `block in with_base' sass (3.7.4) lib/sass/stack.rb:135:in `with_frame' sass (3.7.4) lib/sass/stack.rb:79:in `with_base' sass (3.7.4) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.7.4) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.7.4) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.7.4) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.7.4) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.7.4) lib/sass/tree/visitors/perform.rb:10:in `visit' sass (3.7.4) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.7.4) lib/sass/tree/root_node.rb:20:in `render' sass (3.7.4) lib/sass/engine.rb:290:in `render' sprockets (3.7.2) lib/sprockets/sass_processor.rb:74:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:171:in `module_include' sprockets (3.7.2) lib/sprockets/sass_processor.rb:73:in `call' sprockets (3.7.2) lib/sprockets/sass_processor.rb:30:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag' /home/jinhu/Repos/intro/app/views/layouts/intro/admin/application.html.erb:6:in `__home_jinhu__epos_intro_app_views_layouts_intro_admin_application_html_erb___2395277479911036705_47033786326200' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:02:59 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.4ms) Completed 200 OK in 109ms (Views: 108.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-dad8c057ab0ce738bfe951d752664ee193658f50c0fa087e4cc857dec31e366e.css?body=1" for ::1 at 2019-07-18 16:02:59 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:04:57 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.7ms) Completed 200 OK in 141ms (Views: 139.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-74e4a05c89fa59694825dcd56e6638a0af300fed0f787caa75e09f16823b79d5.css?body=1" for ::1 at 2019-07-18 16:04:57 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:05:43 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (4.8ms) Completed 200 OK in 116ms (Views: 115.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-306798aa717a4004935e79cedce0dd5e457979c8b47f479fea396d4013d906a3.css?body=1" for ::1 at 2019-07-18 16:05:43 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:08:35 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (4.0ms) Completed 200 OK in 108ms (Views: 107.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/overrides/form.self-35d67de85290cf35ac219fa0ce8c9766ff4575f32288f03d202097344b0b4730.css?body=1" for ::1 at 2019-07-18 16:08:35 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:12:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.2ms) Completed 200 OK in 37ms (Views: 36.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:12:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.2ms) Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:13:46 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.5ms) Completed 200 OK in 80ms (Views: 79.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-41412cb952229c0cca6e78727bb3df95342568aa8848642f3ad7aadcd90bb831.css?body=1" for ::1 at 2019-07-18 16:13:46 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:14:09 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.3ms) Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:14:31 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.6ms) Completed 200 OK in 35ms (Views: 34.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:16:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.9ms) Completed 200 OK in 63ms (Views: 62.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-9cf855f1906524301f4ab118a8e8bbc70fad0511c1487b8c6de5e47770874db6.css?body=1" for ::1 at 2019-07-18 16:16:06 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:19:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.6ms) Completed 200 OK in 45ms (Views: 32.7ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:21:43 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.9ms) Completed 200 OK in 138ms (Views: 137.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/body.self-e9678b6e15db6bc9ff6ddf56539fdf416db985fca8fac22f4ceb97af1f75d8d7.css?body=1" for ::1 at 2019-07-18 16:21:44 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-07-18 16:21:44 +0800 Started GET "/assets/intro/admin/components/form.self-35d67de85290cf35ac219fa0ce8c9766ff4575f32288f03d202097344b0b4730.css?body=1" for ::1 at 2019-07-18 16:21:44 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:22:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.1ms) Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:40:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.7ms) Completed 200 OK in 196ms (Views: 194.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/body.self-df355c3d9a5bcc80041a31ea205f355c68d3e42a87760a6d684690e075a5ea9f.css?body=1" for ::1 at 2019-07-18 16:40:51 +0800 Started GET "/assets/intro/admin/components/checkbox.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-07-18 16:40:51 +0800 Started GET "/assets/intro/admin/components/form.self-afb70af6e9a13b5a0e11e2412fedec092ce6568e1507171a118aa675b2ed2620.css?body=1" for ::1 at 2019-07-18 16:40:51 +0800 Started GET "/assets/intro/admin/tours.self-c239e76dd7adad2991d43de46720a202d36a39ed5eca907f59e9ed7d2add815d.css?body=1" for ::1 at 2019-07-18 16:40:51 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:41:27 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.0ms) Completed 200 OK in 120ms (Views: 118.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/body.self-2c3d25b09ca594da6e8163ef48031b330fe537ac6a6c852b0a29210097628593.css?body=1" for ::1 at 2019-07-18 16:41:27 +0800 Started GET "/assets/intro/admin/components/form.self-ba1ee6e2eb1e1fb1454f3b9234a8e3a8f2f3ebbf2dbe553882329a101edf255f.css?body=1" for ::1 at 2019-07-18 16:41:27 +0800 Started GET "/assets/intro/admin/tours.self-02002a6d55fc9567ab02036ae06163b0ae23c2c482b39f03eae1aa6c10f5ed96.css?body=1" for ::1 at 2019-07-18 16:41:27 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:41:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.3ms) Completed 200 OK in 47ms (Views: 46.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:43:22 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.6ms) Completed 200 OK in 34ms (Views: 25.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:44:18 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.8ms) Completed 200 OK in 46ms (Views: 31.4ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:46:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.0ms) Completed 200 OK in 55ms (Views: 46.0ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-07-18 16:46:54 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:48:37 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.1ms) Completed 200 OK in 39ms (Views: 38.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-2bcfd6eaf2bed812adee6f394441026b409416adfc2971dd7c238a45e1369ad1.css?body=1" for ::1 at 2019-07-18 16:48:37 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:49:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (3.9ms) Completed 200 OK in 43ms (Views: 41.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-ea4c797c985512c1b6a4ebeb1af13634620283ec125151d2ad3be88e58da885a.css?body=1" for ::1 at 2019-07-18 16:49:24 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:49:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.2ms) Completed 200 OK in 47ms (Views: 46.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-daec36002758ff7c6ea948962ba8dbfb3c89e214dee43d650723c4c104e2aef5.css?body=1" for ::1 at 2019-07-18 16:49:44 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:50:00 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.0ms) Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-a4bffd1942cbad2569cfd1194d7855354de0152143e00792cc5a2303523b69d9.css?body=1" for ::1 at 2019-07-18 16:50:00 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:50:12 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.8ms) Completed 200 OK in 49ms (Views: 48.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-714ffc314f23c3ed00324a3271ba939fc22246807f9c4a5f2b2eaba2c9da2088.css?body=1" for ::1 at 2019-07-18 16:50:13 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:50:20 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 49ms (Views: 48.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-a3529ce9b8631ea4e730be64d7b30c4eb9a0e52884aeb47d16fa3f331a98e90b.css?body=1" for ::1 at 2019-07-18 16:50:20 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 16:50:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.9ms) Completed 200 OK in 53ms (Views: 51.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:13:56 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.3ms) Completed 200 OK in 104ms (Views: 102.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-62b249a4928ba9140a892e23be54b8f1d9f55f863b62dc8fb95d2be7a51d377d.css?body=1" for ::1 at 2019-07-18 17:13:56 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:15:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.3ms) Completed 200 OK in 107ms (Views: 105.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-efd5eda63169b71693fd7e564e6691b41dc6901b60b2e3ad48a74b917ed23ff4.css?body=1" for ::1 at 2019-07-18 17:15:25 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:15:36 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.9ms) Completed 200 OK in 52ms (Views: 50.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:16:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.4ms) Completed 200 OK in 100ms (Views: 98.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-bc70812f63665db5a668736825078f0b65fe17ff8404f9881946709139aa8d55.css?body=1" for ::1 at 2019-07-18 17:16:25 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:19:38 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.9ms) Completed 200 OK in 62ms (Views: 60.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:25:12 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.1ms) Completed 200 OK in 97ms (Views: 96.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-452e7ff71d5d45dfa4e53e11b800c36c91a00e572279bb1f6cde4ef22314db5d.css?body=1" for ::1 at 2019-07-18 17:25:12 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:26:59 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (2.7ms) Completed 200 OK in 49ms (Views: 48.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-20086f9d57f116dd35881edceccacd0c460476471de1966e40fa30e7ea1bd4c9.css?body=1" for ::1 at 2019-07-18 17:26:59 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:28:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.5ms) Completed 200 OK in 117ms (Views: 115.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-f19434179a28ddb9b366f5cbdf2959f9e43918279fe5a7c586196fcbaabf1751.css?body=1" for ::1 at 2019-07-18 17:28:14 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:28:37 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.6ms) Completed 200 OK in 109ms (Views: 107.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-1953b190182778fb4286410d5ee1f8c9aec811f32cb602764a78231a3fc9cb9c.css?body=1" for ::1 at 2019-07-18 17:28:37 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:28:50 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.7ms) Completed 200 OK in 98ms (Views: 96.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-528e714b3f03bfd048e45b49d565e11f80a16111af562432f3973834d767c21f.css?body=1" for ::1 at 2019-07-18 17:28:50 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:29:57 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.9ms) Completed 200 OK in 110ms (Views: 108.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-b15d060829d6a76332caed95b5d22ae82ac32be7200a7346100605cc9231adee.css?body=1" for ::1 at 2019-07-18 17:29:57 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:30:04 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.4ms) Completed 200 OK in 75ms (Views: 73.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-829e8ac3e7a909c6feaf9826500ffe0dca488b3d6cff34985c49b82806ece9c3.css?body=1" for ::1 at 2019-07-18 17:30:04 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:31:11 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 84ms (Views: 83.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-cb53ee947384d1c2781078f12b6bbbb208307550c78f04c584e20027c82ea626.css?body=1" for ::1 at 2019-07-18 17:31:11 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:31:21 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (4.2ms) Completed 200 OK in 70ms (Views: 68.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-171c721d1a06e9008e83857e72fea68efd562b119c73ecba4f54e4817185e81f.css?body=1" for ::1 at 2019-07-18 17:31:21 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:32:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.0ms) Completed 200 OK in 55ms (Views: 53.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:35:11 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.9ms) Completed 200 OK in 36ms (Views: 35.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:36:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.7ms) Completed 200 OK in 133ms (Views: 132.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-2a29108d353caf51f47435ab14e76cb6b861ee800aeab844874773f047cc30ad.css?body=1" for ::1 at 2019-07-18 17:36:47 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:37:16 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (3.6ms) Completed 200 OK in 108ms (Views: 107.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-08e8c3b66082c620d88db243a837fca3f03f074f0ef8160ce8cef737cb9cec73.css?body=1" for ::1 at 2019-07-18 17:37:16 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-07-18 17:37:18 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (1.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (13.7ms) Completed 200 OK in 65ms (Views: 60.2ms | ActiveRecord: 1.6ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-18 17:37:20 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"kCZQlTU5On0Ih04TUgr9dJtCYYZ2b1rzb+VIy9ACzgKmlpYDN5D7IMMpDrhUPWMC/is5s84nCnXujIdmFSHbGw=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 17:37:20 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.5ms) Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 17:37:21 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Uli+RqA44TceC45Z15zD4Z1XDGboQgCuZHoV8thTSQxk6HjQopEgatWlzvLRq12X+D5UU1AKUCjlE9pfHXBcFQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "commit"=>"Sign in"} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 17:37:21 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (3.9ms) Completed 200 OK in 31ms (Views: 29.1ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:37:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.2ms) Completed 200 OK in 69ms (Views: 66.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:38:03 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.3ms) Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.0ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-18 17:41:12 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"c2ay1VxTiT5KqQzzYwTiMxldedCDCKSjH4KaIRcx2ZBF1nRDXvpIY4EHTFhlM3xFfDQh5TtA9CWe61WM0hLMiQ=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 17:41:12 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (4.2ms) Completed 200 OK in 114ms (Views: 112.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/button.self-de5ea8768701c4a3024d0e31a6a03959888f682d26a585be76a68a5eab8a910f.css?body=1" for ::1 at 2019-07-18 17:41:13 +0800 Started GET "/assets/intro/admin/components/form.self-924494b4beaee407bf618909033e2863a4385bd5e86d46f7313e916f22c1904c.css?body=1" for ::1 at 2019-07-18 17:41:13 +0800 Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 17:41:48 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.3ms) Completed 200 OK in 56ms (Views: 54.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/button.self-d11ef26573635550d7a45b385cda878a176f54e7b6738744ff3c3abbb09dbfcf.css?body=1" for ::1 at 2019-07-18 17:41:48 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 17:42:02 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KMuPCu5bCFF806WE3qb9ynEUOEDhDD9XrGTletsRoCwee0mc7PLJDLd95S/YkWO8FH1gdVlEb9EtDSrXHjK1NQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 17:42:02 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.4ms) Completed 200 OK in 45ms (Views: 42.5ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:42:04 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.4ms) Completed 200 OK in 58ms (Views: 56.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:42:43 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.8ms) Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:45: syntax error, unexpected tIDENTIFIER, expecting ')' ...ass: 'intro-admin__button' type: :button );@output_buffer.sa... ... ^): /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:45: syntax error, unexpected tIDENTIFIER, expecting ')' ...ass: 'intro-admin__button' type: :button );@output_buffer.sa... ... ^ actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___3122518685684046544_70284779371940' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___1998722227659500672_47033785374900' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___3122518685684046544_70284779371940' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:42:50 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.4ms) Completed 200 OK in 46ms (Views: 44.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 17:44:58 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.5ms) Completed 200 OK in 56ms (Views: 53.8ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 17:45:00 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.3ms) Completed 200 OK in 59ms (Views: 57.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 19:27:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (2.4ms) Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 19:27:10 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.7ms) Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 19:27:14 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.1ms) Completed 200 OK in 29ms (Views: 27.9ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 19:27:17 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.8ms) Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 19:27:44 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.6ms) Completed 200 OK in 56ms (Views: 53.8ms | ActiveRecord: 0.4ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-18 19:27:45 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"7X6+k1/ggyU+zlWwOURkPmtkRgFdGQrdHp73XluTTsnbzngFXUlCePVgFRs/c/pIDg0eNOVRWluf9zjznrBb0A=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 19:27:45 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (5.0ms) Completed 200 OK in 49ms (Views: 48.1ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 19:28:03 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WB/oXtkwDDZuFPL1pBF5nVpgyhfbFjmTUgsi95w8ruBury7I25nNa6W6sl6iJufrPwmSImNeaRXTYu1aWR+7+Q==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 19:28:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.2ms) Completed 200 OK in 61ms (Views: 58.4ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 19:28:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.7ms) Completed 200 OK in 57ms (Views: 56.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:35:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.9ms) Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:14: syntax error, unexpected '>' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:48: syntax error, unexpected keyword_end, expecting ')' '.freeze; end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:49: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:51: syntax error, unexpected keyword_end, expecting ')'): /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:14: syntax error, unexpected '>' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:48: syntax error, unexpected keyword_end, expecting ')' '.freeze; end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:49: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:51: syntax error, unexpected keyword_end, expecting ')' actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___3122518685684046544_70284779371940' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___1998722227659500672_47033785374900' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___3122518685684046544_70284779371940' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:35:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (3.8ms) Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:14: syntax error, unexpected '>' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:48: syntax error, unexpected keyword_end, expecting ')' '.freeze; end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:49: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:51: syntax error, unexpected keyword_end, expecting ')'): /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:14: syntax error, unexpected '>' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:48: syntax error, unexpected keyword_end, expecting ')' '.freeze; end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:49: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:51: syntax error, unexpected keyword_end, expecting ')' actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___3122518685684046544_70284779371940' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___1998722227659500672_47033785374900' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___3122518685684046544_70284779371940' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:35:58 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.2ms) Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:14: syntax error, unexpected '>' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:48: syntax error, unexpected keyword_end, expecting ')' '.freeze; end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:49: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:51: syntax error, unexpected keyword_end, expecting ')'): /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:14: syntax error, unexpected '>' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:48: syntax error, unexpected keyword_end, expecting ')' '.freeze; end ;@output_buffer.to_s ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:49: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:51: syntax error, unexpected keyword_end, expecting ')' actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___3122518685684046544_70284779371940' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___1998722227659500672_47033785374900' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___3122518685684046544_70284779371940' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:36:04 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.0ms) Completed 200 OK in 42ms (Views: 41.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:36:13 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (35.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (41.4ms) Completed 200 OK in 90ms (Views: 88.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:37:01 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.2ms) Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:37:37 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.7ms) Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:38:07 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.0ms) Completed 200 OK in 60ms (Views: 58.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:38:56 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (31.0ms) Completed 200 OK in 74ms (Views: 72.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:39:57 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.3ms) Completed 200 OK in 146ms (Views: 144.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-ed4b93306112241d774772267108954d69ad41f0e5d1a437948e50021cfb26d2.css?body=1" for ::1 at 2019-07-18 20:39:58 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:41:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.3ms) Completed 200 OK in 106ms (Views: 105.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-418fe7d2567730b7b29682f270bb4889af29dbebacdf46f8c1d66b1a901346ca.css?body=1" for ::1 at 2019-07-18 20:41:06 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:42:20 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.5ms) Completed 200 OK in 45ms (Views: 43.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:43:29 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 45ms (Views: 43.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:44:40 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.3ms) Completed 200 OK in 69ms (Views: 66.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-e4554d407a69ae42ae43ec2583f3ca569d92de73a9a37b88456f75dea2f482fe.css?body=1" for ::1 at 2019-07-18 20:44:40 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:45:03 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (21.9ms) Completed 200 OK in 51ms (Views: 50.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:45:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.7ms) Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:46:29 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.9ms) Completed 200 OK in 145ms (Views: 144.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-3f645ca411f62139307fb1cb439c43080832c10d460de7ca3b69b34e50c48b51.css?body=1" for ::1 at 2019-07-18 20:46:29 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:47:09 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.4ms) Completed 200 OK in 35ms (Views: 33.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:48:35 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (28.9ms) Completed 200 OK in 98ms (Views: 75.5ms | ActiveRecord: 1.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:49:07 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.3ms) Completed 200 OK in 88ms (Views: 86.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/checkbox.self-3f83132468083d2bcaa0ecb176d9c64d150b8cd147c66b148bcd67c52677db41.css?body=1" for ::1 at 2019-07-18 20:49:07 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:49:35 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.3ms) Completed 200 OK in 41ms (Views: 29.0ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:50:27 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.4ms) Completed 200 OK in 33ms (Views: 32.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:53:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.5ms) Completed 200 OK in 145ms (Views: 143.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-30f124399814348e062f2336b0373867606579ae19876f2fbfc97f46e174e582.css?body=1" for ::1 at 2019-07-18 20:53:51 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:55:12 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.0ms) Completed 200 OK in 39ms (Views: 37.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:55:52 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.5ms) Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 20:58:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.4ms) Completed 200 OK in 214ms (Views: 213.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-68fd498a0edd50df3e40aea2490c9cf3274cfc6b3716b5e04729dff27b5022df.css?body=1" for ::1 at 2019-07-18 20:58:48 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:04:58 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.6ms) Completed 200 OK in 99ms (Views: 97.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-bb9f3174ee1c034aa2b549093bd8d3da4ca5214d52f6e98c14772aca01ffc5db.css?body=1" for ::1 at 2019-07-18 21:04:58 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:09:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.1ms) Completed 200 OK in 142ms (Views: 141.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-5436d5cd7fe4b6f04741eeae7f7dab3c4c016b4a3583893665a1c9411cd3b0e8.css?body=1" for ::1 at 2019-07-18 21:09:23 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:10:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.4ms) Completed 200 OK in 65ms (Views: 64.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-264c25fed591b1341a3b609baf1c012c1fe4df1c241d711e54ce8b0d3e938ddf.css?body=1" for ::1 at 2019-07-18 21:10:23 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:10:29 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.5ms) Completed 200 OK in 47ms (Views: 46.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-084871b23b686cd0efac0c99db8d2d2f26a8da31bd212f352306f64f9d1d3182.css?body=1" for ::1 at 2019-07-18 21:10:29 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:10:49 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.5ms) Completed 200 OK in 48ms (Views: 47.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-07-18 21:10:49 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:11:42 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.3ms) Completed 200 OK in 65ms (Views: 63.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:11:46 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 63ms (Views: 61.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:17:13 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.4ms) Completed 200 OK in 49ms (Views: 34.8ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:18:55 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.8ms) Completed 200 OK in 77ms (Views: 75.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:20:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 46ms (Views: 31.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:20:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (2.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.0ms) Completed 200 OK in 60ms (Views: 55.7ms | ActiveRecord: 2.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:20:27 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.4ms) Completed 200 OK in 64ms (Views: 62.3ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-07-18 21:23:39 +0800 Processing by Rails::WelcomeController#index as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/welcome/index.html.erb (1.5ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:23:43 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.7ms) Completed 200 OK in 78ms (Views: 76.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:23:45 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.7ms) Completed 200 OK in 66ms (Views: 63.9ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-18 21:23:47 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"8fc1B9LQOO2MJr9YMlvXnBPuVD6Hd70yjUWhRV4q6UDHR/OR0Hn5sEeI//M0bEnqdocMCz8/7bQMLG7omwn8WQ=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 21:23:47 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.4ms) Completed 200 OK in 46ms (Views: 45.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 21:23:48 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"H8Aq86HgOmtxq4dPfd6N4EO5JTNesoQktaxOEvjPTV4pcOxlo0n7NroFx+R76ROWJtB9Bub61KI0xYG/PexYRw==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:23:48 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.7ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (8.3ms) Completed 200 OK in 47ms (Views: 44.7ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:23:50 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.7ms) Completed 200 OK in 78ms (Views: 76.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:28:32 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.2ms) Completed 200 OK in 48ms (Views: 35.8ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:28:33 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.1ms) Completed 200 OK in 64ms (Views: 62.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:28:38 +0800 Processing by Intro::Admin::ToursController#index as HTML Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `local=' for I18n:Module): /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:11:in `index' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:28:43 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 33ms (Views: 27.1ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:28:46 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (21.5ms) Completed 200 OK in 88ms (Views: 70.0ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:29:09 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.4ms) Completed 200 OK in 61ms (Views: 58.7ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:29:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.8ms) Completed 200 OK in 75ms (Views: 73.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:29:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.8ms) Completed 200 OK in 65ms (Views: 63.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:29:18 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.4ms) Completed 200 OK in 69ms (Views: 68.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:30:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 54ms (Views: 43.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:30:50 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.8ms) Completed 200 OK in 77ms (Views: 74.6ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:30:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.1ms) Completed 200 OK in 63ms (Views: 62.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:31:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.5ms) Completed 200 OK in 51ms (Views: 35.2ms | ActiveRecord: 0.9ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-18 21:31:15 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"lOGtqxvGGJa53k1SP0KuoHyl17QJ1FrzVqboWafw77OiUWs9GW/Zy3JwDfk5dTDWGcyPgbGcCnXXzyf0YtP6qg=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 21:31:15 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (4.0ms) Completed 200 OK in 61ms (Views: 59.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 21:31:17 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"h8NYw3eT7M4B++EITPSc0csq5R1izViQPqb9N3uRo9Kxc55VdTotk8pVoaNKwwKnrkO9KNqFCBa/zzKavrK2yw==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:31:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.8ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.3ms) Completed 200 OK in 50ms (Views: 45.7ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:31:18 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.2ms) Completed 200 OK in 70ms (Views: 68.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:31:30 +0800 Processing by Intro::Admin::ToursController#new as HTML Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) I18n::InvalidLocale ("zh-TW" is not a valid locale): i18n (0.9.5) lib/i18n.rb:295:in `enforce_available_locales!' i18n (0.9.5) lib/i18n/config.rb:13:in `locale=' actionview (4.2.11.1) lib/action_view/lookup_context.rb:237:in `locale=' actionview (4.2.11.1) lib/action_view/rendering.rb:19:in `locale=' i18n (0.9.5) lib/i18n.rb:43:in `locale=' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:15:in `new' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:31:38 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (4.9ms) Completed 200 OK in 37ms (Views: 27.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:31:55 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.7ms) Completed 200 OK in 66ms (Views: 64.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:31:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.8ms) Completed 200 OK in 66ms (Views: 63.1ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:32:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.8ms) Completed 200 OK in 36ms (Views: 27.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:34:42 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.5ms) Completed 200 OK in 47ms (Views: 33.9ms | ActiveRecord: 0.7ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-18 21:34:45 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"EsTe4TWk8k4Sh/LTnpjmiAFfdA/AHaVtu8pq6pCf8CQkdBh3Nw0zE9kpsniYr3j+ZDYsOnhV9es6o6VHVbzlPQ=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 21:34:45 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.7ms) Completed 200 OK in 50ms (Views: 48.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 21:34:47 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GmOoHiW9bC/YIxY+I1YXXWTiQfNto7p8tXDJDLTeHuAs026IJxStchONVpUlYYkrAYsZxtXr6vo0GQahcf0L+Q==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:34:47 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.4ms) Completed 200 OK in 53ms (Views: 49.7ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:34:48 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.9ms) Completed 200 OK in 65ms (Views: 64.0ms | ActiveRecord: 0.0ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-07-18 21:39:31 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"NBbfWD7/hajJshnCj0vZWzueeGp63+AltIUcEoAalh0CphnOPFZE9QIcWWmJfEctXvcgX8KXsKM17NO/RTmDBA=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-07-18 21:39:31 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.6ms) Completed 200 OK in 69ms (Views: 67.1ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 21:39:35 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vAAXOve8J7CMrxBvsq1EMBQDy8p5Y441yNON2Ql1hamKsNGs9RXm7UcBUMS0mtpGcWqT/8Er3rNJukJ0zFaQsA==", "username"=>"", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.8ms) Completed 200 OK in 61ms (Views: 59.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-07-18 21:39:37 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GLcJvXOkDywCfu8qr8mNvJd7vz0MWPrAH4UpM93NJGwuB88rcQ3OccnQr4Gp/hPK8hLnCLQQqkae7OaeGO4xdQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-07-18 21:39:37 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.0ms) Completed 200 OK in 56ms (Views: 53.8ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-18 21:39:38 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.2ms) Completed 200 OK in 68ms (Views: 66.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 21:42:35 +0800 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (47.2ms) Completed 200 OK in 466ms (Views: 446.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 22:10:50 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (0.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.8ms) Completed 200 OK in 42ms (Views: 32.8ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 22:11:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.9ms) Completed 200 OK in 31ms (Views: 29.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 22:11:55 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.4ms) Completed 200 OK in 38ms (Views: 36.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 22:12:05 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 22:15:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.6ms) Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 22:22:03 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (17.3ms) Completed 200 OK in 55ms (Views: 38.7ms | ActiveRecord: 1.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:11:28 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.1ms) Completed 200 OK in 60ms (Views: 43.8ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:17:46 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (35.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (38.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (47.5ms) Completed 200 OK in 82ms (Views: 66.2ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:21:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.0ms) Completed 200 OK in 46ms (Views: 35.7ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:22:15 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.1ms) Completed 200 OK in 54ms (Views: 35.3ms | ActiveRecord: 1.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:26:31 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (17.8ms) Completed 200 OK in 51ms (Views: 38.7ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:31:30 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.9ms) Completed 200 OK in 44ms (Views: 32.8ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:32:49 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 129ms (Views: 127.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:32:58 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.6ms) Completed 200 OK in 71ms (Views: 68.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:43:05 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.9ms) Completed 200 OK in 50ms (Views: 34.8ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:44:32 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.7ms) Completed 200 OK in 67ms (Views: 65.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:44:33 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.5ms) Completed 200 OK in 66ms (Views: 64.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:49:07 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.7ms) Completed 200 OK in 57ms (Views: 55.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:49:32 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.6ms) Completed 200 OK in 55ms (Views: 44.1ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:59:31 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (29.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (49.1ms) Completed 500 Internal Server Error in 71ms (ActiveRecord: 0.8ms) ActionView::Template::Error (undefined local variable or method `tour' for #<#:0x007f099900d558>): 73:
74:
75: <%= label_tag :btn_complete_text, t('intro.admin.tour.btn_complete_text') %> 76: <%= text_field_tag 'tour[options][btn_complete_text]', tour.options['btn_complete_text'], placeholder: t('intro.admin.placeholders.btn_complete_text') %> 77:
78: 79:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:76:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___1620322397651373644_69839750283480' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___1620322397651373644_69839750283480' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__4008840359731496592_46993724417900' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___836017892506402830_46993742741540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__4008840359731496592_46993724417900' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-19 23:59:41 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.0ms) Completed 200 OK in 62ms (Views: 60.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:01:56 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.9ms) Completed 200 OK in 49ms (Views: 46.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:02:10 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.4ms) Completed 200 OK in 77ms (Views: 75.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:02:13 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.3ms) Completed 200 OK in 75ms (Views: 73.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:03:39 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.4ms) Completed 200 OK in 65ms (Views: 63.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:03:49 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.2ms) Completed 200 OK in 78ms (Views: 76.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:04:13 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:04:53 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (23.4ms) Completed 200 OK in 71ms (Views: 69.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:04:59 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.4ms) Completed 200 OK in 45ms (Views: 44.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:05:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (44.8ms) Completed 200 OK in 79ms (Views: 77.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:05:36 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (25.3ms) Completed 200 OK in 77ms (Views: 75.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:06:09 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.3ms) Completed 200 OK in 56ms (Views: 54.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:06:30 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.3ms) Completed 200 OK in 78ms (Views: 77.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:06:40 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (26.1ms) Completed 200 OK in 74ms (Views: 72.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:07:19 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 38ms (Views: 37.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-07-20 00:07:32 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.7ms) Completed 200 OK in 54ms (Views: 52.3ms | ActiveRecord: 0.0ms)  (20.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.2ms) select sqlite_version(*)  (14.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20190706100955)  (0.2ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706100955"]]  (13.1ms) commit transaction Migrating to CreateIntroTours (20190706110237)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "intro_tours" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ident" varchar NOT NULL, "controller_path" varchar DEFAULT '' NOT NULL, "action_name" varchar DEFAULT '' NOT NULL, "route" text, "options" text, "posted" boolean DEFAULT 'f', "expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.4ms) CREATE UNIQUE INDEX "index_intro_tours_on_ident" ON "intro_tours" ("ident")  (0.3ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'  (0.3ms) CREATE INDEX "index_intro_tours_on_controller_and_action_and_posted" ON "intro_tours" ("controller_path", "action_name", "posted") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110237"]]  (19.8ms) commit transaction Migrating to CreateIntroTourHistories (20190706110238)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "intro_tour_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tour_id" integer NOT NULL, "user_id" integer NOT NULL, "touch_count" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE INDEX "index_intro_tour_histories_on_user_and_tour_and_touch_count" ON "intro_tour_histories" ("user_id", "tour_id", "touch_count") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110238"]]  (17.2ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'  (0.3ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_posted' AND type='index'   (0.4ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index' Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:31:09 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.3ms) Completed 200 OK in 425ms (Views: 381.4ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/components/button.self-d11ef26573635550d7a45b385cda878a176f54e7b6738744ff3c3abbb09dbfcf.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/components/checkbox.self-3f83132468083d2bcaa0ecb176d9c64d150b8cd147c66b148bcd67c52677db41.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/tours.self-02002a6d55fc9567ab02036ae06163b0ae23c2c482b39f03eae1aa6c10f5ed96.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/components/form.self-68fd498a0edd50df3e40aea2490c9cf3274cfc6b3716b5e04729dff27b5022df.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/application.self-f9ecc503685523b804a0f02a2ae501bb190b025b8354ec053661d70988296034.css?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-01 22:31:09 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:37:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.3ms) Completed 200 OK in 150ms (Views: 148.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-01 22:37:44 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:39:07 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.3ms) Completed 200 OK in 71ms (Views: 69.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:42:52 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.5ms) Completed 200 OK in 103ms (Views: 101.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-3b81bd442f8676da0d9f92da4ab3657ca4964d20f1edb93de5a35479b12f57d3.css?body=1" for ::1 at 2019-08-01 22:42:52 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:43:03 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.2ms) Completed 200 OK in 98ms (Views: 95.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-3f4f3abb770bd6968251454055eda437807943d535bdcd2e711a3a18b1becc02.css?body=1" for ::1 at 2019-08-01 22:43:03 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:43:55 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.4ms) Completed 200 OK in 64ms (Views: 63.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-e647e133a53a1f9f5149d506d6c71fbaf6d5f28d9aba67a14dfdb5e0d3ea71e7.css?body=1" for ::1 at 2019-08-01 22:43:55 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:45:56 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.6ms) Completed 200 OK in 88ms (Views: 86.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-3a5798e9f25c619506777426c813026fad15f8788ae75dc2ba52670f724fe360.css?body=1" for ::1 at 2019-08-01 22:45:56 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:46:21 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.1ms) Completed 200 OK in 100ms (Views: 98.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-d7099269697d0f47d4dcca5346bc208cb8cba6c69cdf4efbb4287458f14b0acc.css?body=1" for ::1 at 2019-08-01 22:46:21 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:46:41 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.3ms) Completed 200 OK in 100ms (Views: 98.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-630ab2ea0fe0140bcc1754be104add8ce798543d50d672f87fd7dfa0618dccc4.css?body=1" for ::1 at 2019-08-01 22:46:41 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:48:55 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.2ms) Completed 200 OK in 73ms (Views: 71.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-2322e83ce6d774f365de4ab2513df32410a25e4835cc6c463dd4773b5da4c370.css?body=1" for ::1 at 2019-08-01 22:48:56 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:50:16 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.6ms) Completed 200 OK in 106ms (Views: 104.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-6d8ff204cef6b8812269310f1c6bde4965688e62d18a191c61a4d38d2aff76a4.css?body=1" for ::1 at 2019-08-01 22:50:16 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:50:31 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.0ms) Completed 200 OK in 91ms (Views: 89.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-9435811ebc5b6234f9e9d6f994d5707062408d0bf2623bd6246e8926a62c55cf.css?body=1" for ::1 at 2019-08-01 22:50:31 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:53:35 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.5ms) Completed 200 OK in 95ms (Views: 93.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-280430a03c80d80b75e7fd849029b7cb4a80e94ea10e53056eeadfbd221f8aa7.css?body=1" for ::1 at 2019-08-01 22:53:35 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:54:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.8ms) Completed 200 OK in 103ms (Views: 101.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-dc868f7b88473b15349531757c104df89a087eae4ba86c2487d6ed7a9734e9b7.css?body=1" for ::1 at 2019-08-01 22:54:47 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:55:36 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (17.7ms) Completed 200 OK in 98ms (Views: 97.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-e28c7aa77d3a99ac600c6cc2965cd5a71aef2a647e2f92fa93dd789f3ee4c858.css?body=1" for ::1 at 2019-08-01 22:55:36 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:55:48 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.9ms) Completed 200 OK in 133ms (Views: 131.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-b08db554e2a549b05d50827ddab3f421254dd0229176efa0610ed14eb6f84e82.css?body=1" for ::1 at 2019-08-01 22:55:48 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:56:04 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.4ms) Completed 200 OK in 103ms (Views: 101.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-04c687a72c355861c22d6db2d5085bfecc1a11890a94517e1fd7501fa2b92c71.css?body=1" for ::1 at 2019-08-01 22:56:04 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:56:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.5ms) Completed 200 OK in 32ms (Views: 30.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:57:46 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (21.0ms) Completed 200 OK in 105ms (Views: 103.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-22c3ae6b71ac2b6896da547e540b7e5e966528875043be64be46ba9ab6f78e50.css?body=1" for ::1 at 2019-08-01 22:57:46 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 22:59:17 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.1ms) Completed 200 OK in 80ms (Views: 78.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-862b65467d44f6e30a1649a135dc74f4fa81705c7ecb3667b3b821513aec46bd.css?body=1" for ::1 at 2019-08-01 22:59:17 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:00:58 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (23.7ms) Completed 200 OK in 92ms (Views: 90.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-9ab74fed2991f60570a4f9c264cb7814fa234038c016069cf2aa4eea97477995.css?body=1" for ::1 at 2019-08-01 23:00:58 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:01:22 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.7ms) Completed 200 OK in 94ms (Views: 93.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-df87c96ffe6c3bf2a08ba7fdbb14254c56bcfa47aaac115d76caedbbeb9c0a02.css?body=1" for ::1 at 2019-08-01 23:01:22 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:01:41 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.7ms) Completed 200 OK in 71ms (Views: 69.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-b8b14255bcd1146d43f5b7c0c1284c88c18007baa491065d4cac32575214d74d.css?body=1" for ::1 at 2019-08-01 23:01:41 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:01:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.8ms) Completed 200 OK in 80ms (Views: 77.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:10:33 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (26.2ms) Completed 200 OK in 207ms (Views: 204.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-aed6a56550350eb6919fda607bedb12239a224a1f6ee16945cdf7b2a7c4a5cb8.css?body=1" for ::1 at 2019-08-01 23:10:33 +0800 Started GET "/assets/intro/admin/tour.self-3d1d0198c3223f11643d51c5180a6b898c712fe14f1121e16f956678fbdfa6d9.css?body=1" for ::1 at 2019-08-01 23:10:33 +0800 Started GET "/assets/intro/admin/application.self-72cef24f6d2b0bf68825925888b5c699c5ed400a0d9274ad476652e664cfde95.css?body=1" for ::1 at 2019-08-01 23:10:33 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:10:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.6ms) Completed 200 OK in 113ms (Views: 111.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-47cfe9bddabced99bcefe4fb9aab07d96c6fb0eb74de43aee6621ac222fef2f5.css?body=1" for ::1 at 2019-08-01 23:10:54 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:11:17 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.9ms) Completed 200 OK in 107ms (Views: 106.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-bb9f41f954d1385e9903d822bee25c717bc50757a8c47db5430bfd614fca958d.css?body=1" for ::1 at 2019-08-01 23:11:17 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:11:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.8ms) Completed 200 OK in 93ms (Views: 91.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-352a671ed382dba836311d20c82faa8f1d3a2f1d49545a2d2fb219921b3c4a63.css?body=1" for ::1 at 2019-08-01 23:11:44 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:11:57 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.6ms) Completed 200 OK in 80ms (Views: 78.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-8b8c72247574c1940878a8145dd55e76f4f86f36fb4069bcf30ded71a27fd6b3.css?body=1" for ::1 at 2019-08-01 23:11:57 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:15:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.1ms) Completed 200 OK in 106ms (Views: 105.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-394ad94239fd92882b275f4441f48659cffc95bf3fb462f360ae495da955f8e7.css?body=1" for ::1 at 2019-08-01 23:15:06 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:15:52 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (23.6ms) Completed 200 OK in 113ms (Views: 111.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-5ad72c42518f42255681ab249165e4883b68061ae2962ab2ad01a8088e336ec3.css?body=1" for ::1 at 2019-08-01 23:15:52 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:17:21 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.1ms) Completed 200 OK in 117ms (Views: 115.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-e8858143dc088901a09d0e707185db7f91b77d17936b94b3d50b3cdb52fd8aa9.css?body=1" for ::1 at 2019-08-01 23:17:21 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:17:46 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.7ms) Completed 200 OK in 91ms (Views: 89.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-f7024e2f80d987a25d2d46e9869c3530300fd0726b5ce5240c1ea4d1dfff39a3.css?body=1" for ::1 at 2019-08-01 23:17:46 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:21:42 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (17.5ms) Completed 200 OK in 51ms (Views: 37.4ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:22:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.9ms) Completed 200 OK in 191ms (Views: 189.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tours.self-5c9396c13abc76b89e95db3fca8f7c2a22d06262f1c5e86aebc6bf3d9332fbc9.css?body=1" for ::1 at 2019-08-01 23:22:14 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:25:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.5ms) Completed 200 OK in 113ms (Views: 112.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-4af2f5dfb76a10c6fd88132d5bf678f650cc89079833a91421eed3273b19265c.css?body=1" for ::1 at 2019-08-01 23:25:54 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:28:08 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (21.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (30.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (38.9ms) Completed 200 OK in 166ms (Views: 164.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-23119d45177ee70dfe11394b87762b327a884d9cda2f62a1fac7244622e51596.css?body=1" for ::1 at 2019-08-01 23:28:08 +0800 Started GET "/assets/intro/admin/tour.self-1e5d88414e6d8a07883fcfa729d8e819c351feb87dba9bad6b896b8f1c84da24.css?body=1" for ::1 at 2019-08-01 23:28:08 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:29:09 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 97ms (Views: 95.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-e480a17946a8bc6631687ef8d77c96776aba70fd54094dc41fb356cd388bf854.css?body=1" for ::1 at 2019-08-01 23:29:09 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:30:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 69ms (Views: 68.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/select.self-c1bf991d4d88098f813066681300c4477fd3c095a1e21a8a7a518318bc9c2d99.css?body=1" for ::1 at 2019-08-01 23:30:06 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:31:13 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.6ms) Completed 200 OK in 53ms (Views: 36.6ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:33:26 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (17.3ms) Completed 200 OK in 48ms (Views: 46.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:35:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (38.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (44.9ms) Completed 200 OK in 188ms (Views: 186.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-cee23ad5f5e1b6b6903b0bd8db50ef65235e0e82e7cabb2ed9b14bf8c36bae0e.css?body=1" for ::1 at 2019-08-01 23:35:23 +0800 Started GET "/assets/intro/admin/tour.self-8fe518fe9415f5e45d9bdd00238d43abcae8bfc8bfe3218519942da4d63b72b9.css?body=1" for ::1 at 2019-08-01 23:35:23 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:36:38 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.6ms) Completed 200 OK in 75ms (Views: 73.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-3ec5a064270f09613485b300e2cc95c7535a2703af220a8e03523997a88ad065.css?body=1" for ::1 at 2019-08-01 23:36:38 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-01 23:37:07 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.9ms) Completed 200 OK in 72ms (Views: 70.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-99aaed82000b7bf669d67ecaa3b50ac651f887faae22db7e3f3335a4ad82be59.css?body=1" for ::1 at 2019-08-01 23:37:07 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 09:59:00 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (25.3ms) Completed 200 OK in 407ms (Views: 388.8ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:02:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.9ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:05:33 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.1ms) Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:08:19 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.9ms) Completed 200 OK in 98ms (Views: 96.7ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-a2391bb1ba0a66389cc59e7bec391803832f36729646aed739fafb8b697bd0f7.css?body=1" for ::1 at 2019-08-02 10:08:19 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:15:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (5.0ms) Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:7: syntax error, unexpected tSTRING_DEND, expecting ')' ...('intro.admin.component.step')} );@output_buffer.safe_append... ... ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:73: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:75: syntax error, unexpected keyword_end, expecting ')'): /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:7: syntax error, unexpected tSTRING_DEND, expecting ')' ...('intro.admin.component.step')} );@output_buffer.safe_append... ... ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:73: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:75: syntax error, unexpected keyword_end, expecting ')' actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:53:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__3267323290675641760_47214180131740' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__3267323290675641760_47214180131740' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__4241525133739790659_47214181371060' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__2163441300471397718_47214180182400' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__4241525133739790659_47214181371060' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:17:37 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.3ms) Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) SyntaxError (/home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:7: syntax error, unexpected tSTRING_DEND, expecting ')' ...('intro.admin.component.step')} );@output_buffer.safe_append... ... ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:73: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:75: syntax error, unexpected keyword_end, expecting ')'): /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:7: syntax error, unexpected tSTRING_DEND, expecting ')' ...('intro.admin.component.step')} );@output_buffer.safe_append... ... ^ /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:73: syntax error, unexpected keyword_ensure, expecting ')' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:75: syntax error, unexpected keyword_end, expecting ')' actionview (4.2.11.1) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.11.1) lib/action_view/template.rb:296:in `compile' actionview (4.2.11.1) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.11.1) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.11.1) lib/action_view/template.rb:232:in `compile!' actionview (4.2.11.1) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:53:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__3267323290675641760_47214180131740' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__3267323290675641760_47214180131740' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__4241525133739790659_47214181371060' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__2163441300471397718_47214180182400' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__4241525133739790659_47214181371060' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:17:48 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:20:56 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.4ms) Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:21:03 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.7ms) Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:22:09 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.3ms) Completed 200 OK in 34ms (Views: 32.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:22:28 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.6ms) Completed 200 OK in 44ms (Views: 42.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:22:35 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.3ms) Completed 200 OK in 42ms (Views: 40.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:25:22 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:27:59 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.8ms) Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:28:01 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.9ms) Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:28:03 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:28:09 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.6ms) Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:29:30 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.7ms) Completed 200 OK in 54ms (Views: 52.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-52bcff854092741e6270c42d414d5668f9e805a509800f92ff94b5eb092afe30.css?body=1" for ::1 at 2019-08-02 10:29:30 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:34:05 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.4ms) Completed 200 OK in 42ms (Views: 34.0ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:36:00 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.4ms) Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:37:15 +0800 Processing by Intro::Admin::ToursController#new as HTML Redirected to http://localhost:9292/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-02 10:37:15 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 200 OK in 36ms (Views: 35.2ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/components/button.self-d11ef26573635550d7a45b385cda878a176f54e7b6738744ff3c3abbb09dbfcf.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/components/checkbox.self-3f83132468083d2bcaa0ecb176d9c64d150b8cd147c66b148bcd67c52677db41.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/components/form.self-cee23ad5f5e1b6b6903b0bd8db50ef65235e0e82e7cabb2ed9b14bf8c36bae0e.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/components/select.self-c1bf991d4d88098f813066681300c4477fd3c095a1e21a8a7a518318bc9c2d99.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/tours.self-5c9396c13abc76b89e95db3fca8f7c2a22d06262f1c5e86aebc6bf3d9332fbc9.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/tour.self-52bcff854092741e6270c42d414d5668f9e805a509800f92ff94b5eb092afe30.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/application.self-72cef24f6d2b0bf68825925888b5c699c5ed400a0d9274ad476652e664cfde95.css?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-02 10:37:16 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-08-02 10:37:38 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"pRe/0m10BakKmlgLY/1vHhbgw7zSr/f/8RjMMemYDd/J2RDd9+3diMVfFICMXLoBh7SqZhVASP5XxeDnnGHFEg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-02 10:37:38 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (3.6ms) Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:37:41 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (7.8ms) Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:40:13 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.2ms) Completed 200 OK in 51ms (Views: 50.4ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/components/button.self-d11ef26573635550d7a45b385cda878a176f54e7b6738744ff3c3abbb09dbfcf.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/components/checkbox.self-3f83132468083d2bcaa0ecb176d9c64d150b8cd147c66b148bcd67c52677db41.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/components/form.self-cee23ad5f5e1b6b6903b0bd8db50ef65235e0e82e7cabb2ed9b14bf8c36bae0e.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/components/select.self-c1bf991d4d88098f813066681300c4477fd3c095a1e21a8a7a518318bc9c2d99.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/tours.self-5c9396c13abc76b89e95db3fca8f7c2a22d06262f1c5e86aebc6bf3d9332fbc9.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/tour.self-1042f383ee7450636cf0cb81bbb45db17ea8697c36c3d89ff5b0978297d19685.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/application.self-72cef24f6d2b0bf68825925888b5c699c5ed400a0d9274ad476652e664cfde95.css?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-02 10:40:13 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:40:21 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.1ms) Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/tour.self-1042f383ee7450636cf0cb81bbb45db17ea8697c36c3d89ff5b0978297d19685.css?body=1" for ::1 at 2019-08-02 10:40:21 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:40:36 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.7ms) Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/button.self-8d40ba7fa31f1c3d1ebd2c148b4cca3a73be23a576408553ad9891cea3437c67.css?body=1" for ::1 at 2019-08-02 10:40:36 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 10:42:00 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.3ms) Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 18:45:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.5ms) Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 18:45:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.6ms) Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 18:57:21 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.3ms) Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 18:57:42 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.8ms) Completed 200 OK in 44ms (Views: 43.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 18:58:20 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.8ms) Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 18:58:31 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.2ms) Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 18:59:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.5ms) Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:01:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.2ms) Completed 200 OK in 31ms (Views: 30.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:02:01 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.5ms) Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:04:55 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.8ms) Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:05:35 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.5ms) Completed 200 OK in 43ms (Views: 42.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:06:08 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.5ms) Completed 200 OK in 33ms (Views: 32.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:06:21 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.0ms) Completed 200 OK in 40ms (Views: 37.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:06:41 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.3ms) Completed 200 OK in 48ms (Views: 46.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:08:32 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.5ms) Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:08:43 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 29ms (Views: 28.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:09:39 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.5ms) Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:10:04 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.6ms) Completed 200 OK in 40ms (Views: 38.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:15:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.2ms) Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:15:55 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (17.5ms) Completed 200 OK in 38ms (Views: 36.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:16:16 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.9ms) Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:16:33 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.1ms) Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:17:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.5ms) Completed 200 OK in 40ms (Views: 39.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:17:29 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.6ms) Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:17:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.1ms) Completed 200 OK in 33ms (Views: 32.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:19:22 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (21.9ms) Completed 200 OK in 44ms (Views: 43.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:19:36 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.7ms) Completed 200 OK in 42ms (Views: 40.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:20:02 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.2ms) Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:20:20 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.1ms) Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:20:31 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.4ms) Completed 200 OK in 33ms (Views: 32.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:20:40 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.2ms) Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:21:46 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (17.0ms) Completed 200 OK in 40ms (Views: 39.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:22:16 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.8ms) Completed 200 OK in 51ms (Views: 49.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:23:27 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (21.4ms) Completed 200 OK in 42ms (Views: 40.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:24:45 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.2ms) Completed 200 OK in 37ms (Views: 35.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:26:29 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.6ms) Completed 200 OK in 37ms (Views: 36.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:26:39 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.8ms) Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:28:45 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:29:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.7ms) Completed 200 OK in 36ms (Views: 34.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:29:43 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.8ms) Completed 200 OK in 44ms (Views: 42.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:32:11 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.7ms) Completed 200 OK in 41ms (Views: 39.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:32:18 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (21.1ms) Completed 200 OK in 41ms (Views: 39.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:32:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.5ms) Completed 200 OK in 39ms (Views: 36.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:35:59 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.1ms) Completed 200 OK in 42ms (Views: 40.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:36:18 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.9ms) Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 19:36:49 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.2ms) Completed 200 OK in 39ms (Views: 37.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 22:20:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 49ms (Views: 48.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 22:20:36 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.2ms) Completed 200 OK in 33ms (Views: 32.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 22:21:41 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.5ms) Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 22:23:09 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (23.1ms) Completed 200 OK in 49ms (Views: 48.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 22:24:07 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (17.0ms) Completed 200 OK in 39ms (Views: 38.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 22:24:22 +0800 Processing by Intro::Admin::ToursController#new as HTML Redirected to http://localhost:9292/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-02 22:24:22 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/button.self-8d40ba7fa31f1c3d1ebd2c148b4cca3a73be23a576408553ad9891cea3437c67.css?body=1" for ::1 at 2019-08-02 22:24:22 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-08-02 22:24:43 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ep2bWwfjjkZkOcXBWxbMvCGoc+nF6naPkCznxbzl1fDt+WszjY0S97Br07hYDxpzXaIh4eUaC6ipixyELy9W3Q==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-02 22:24:43 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (1.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (3.1ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 1.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 22:24:45 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.5ms) Completed 200 OK in 38ms (Views: 37.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-02 22:26:40 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (3.4ms) Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-02 22:26:42 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.2ms) Completed 200 OK in 37ms (Views: 35.7ms | ActiveRecord: 0.0ms)  (6.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.3ms) select sqlite_version(*)  (5.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20190706100955)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706100955"]]  (7.8ms) commit transaction Migrating to CreateIntroTours (20190706110237)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "intro_tours" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ident" varchar NOT NULL, "controller_path" varchar DEFAULT '' NOT NULL, "action_name" varchar DEFAULT '' NOT NULL, "route" text, "options" text, "published" boolean DEFAULT 'f', "expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE UNIQUE INDEX "index_intro_tours_on_ident" ON "intro_tours" ("ident")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'  (0.1ms) CREATE INDEX "index_intro_tours_on_controller_and_action_and_published" ON "intro_tours" ("controller_path", "action_name", "published") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110237"]]  (6.1ms) commit transaction Migrating to CreateIntroTourHistories (20190706110238)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "intro_tour_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tour_id" integer NOT NULL, "user_id" integer NOT NULL, "touch_count" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_intro_tour_histories_on_user_and_tour_and_touch_count" ON "intro_tour_histories" ("user_id", "tour_id", "touch_count") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110238"]]  (5.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_published' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_published' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index' Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 10:56:37 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (27.8ms) Completed 200 OK in 379ms (Views: 359.8ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 10:57:00 +0800 Processing by Intro::Admin::ToursController#new as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" IS NULL LIMIT 1 Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 9ms (ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 10:57:01 +0800 Processing by Intro::Admin::ToursController#new as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" IS NULL LIMIT 1 Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 4ms (ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 10:57:01 +0800 Processing by Intro::Admin::ToursController#new as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" IS NULL LIMIT 1 Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 10:57:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" IS NULL LIMIT 1 Completed 404 Not Found in 6ms (ActiveRecord: 0.8ms) ActionController::RoutingError (Not Found): /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:45:in `require_tour' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 11:11:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.7ms) Completed 200 OK in 40ms (Views: 32.9ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 11:55:53 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.9ms) Completed 200 OK in 47ms (Views: 39.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 11:56:08 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.7ms) Completed 200 OK in 49ms (Views: 47.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 14:37:28 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.7ms) Completed 200 OK in 33ms (Views: 32.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 14:47:17 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BK5b3AghPInEDCFhN1puvf8+W4Cv2CkhOo2MQrdOMAoyHp1KCoj91A+iYcoxbfDLmlcDtReQeae75EPvcm0lEw==", "simple_url"=>"http://localhost:9292/intro/admin/tours/new", "strict_route"=>"1", "tour"=>{"ident"=>"tours-new", "controller_path"=>"tours", "action_name"=>"new", "query"=>"", "options"=>{"steps"=>[{"title"=>"hello title", "content"=>"hello content", "image_url"=>"", "image_placement"=>"left", "element"=>".select-to", "placement"=>"top-start", "z_index"=>"100", "fixed_placement"=>"1"}, {"title"=>"bab", "content"=>"brabrabrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}}, "button"=>""} Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError): activemodel (4.2.11.1) lib/active_model/forbidden_attributes_protection.rb:21:in `sanitize_for_mass_assignment' activerecord (4.2.11.1) lib/active_record/attribute_assignment.rb:33:in `assign_attributes' activerecord (4.2.11.1) lib/active_record/core.rb:566:in `init_attributes' activerecord (4.2.11.1) lib/active_record/core.rb:281:in `initialize' activerecord (4.2.11.1) lib/active_record/inheritance.rb:61:in `new' activerecord (4.2.11.1) lib/active_record/inheritance.rb:61:in `new' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:21:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.9ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 14:49:59 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BK5b3AghPInEDCFhN1puvf8+W4Cv2CkhOo2MQrdOMAoyHp1KCoj91A+iYcoxbfDLmlcDtReQeae75EPvcm0lEw==", "simple_url"=>"http://localhost:9292/intro/admin/tours/new", "strict_route"=>"1", "tour"=>{"ident"=>"tours-new", "controller_path"=>"tours", "action_name"=>"new", "query"=>"", "options"=>{"steps"=>[{"title"=>"hello title", "content"=>"hello content", "image_url"=>"", "image_placement"=>"left", "element"=>".select-to", "placement"=>"top-start", "z_index"=>"100", "fixed_placement"=>"1"}, {"title"=>"bab", "content"=>"brabrabrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}}, "button"=>""} Unpermitted parameters: query, options  (0.0ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'tours-new' LIMIT 1  (0.2ms) rollback transaction Completed 500 Internal Server Error in 29ms (ActiveRecord: 1.1ms) NameError (undefined local variable or method `strict_route' for #): activemodel (4.2.11.1) lib/active_model/attribute_methods.rb:433:in `method_missing' /home/jinhu/Repos/intro/app/models/intro/tour.rb:73:in `update_route' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_save_callbacks' activerecord (4.2.11.1) lib/active_record/callbacks.rb:302:in `create_or_update' activerecord (4.2.11.1) lib/active_record/persistence.rb:120:in `save' activerecord (4.2.11.1) lib/active_record/validations.rb:37:in `save' activerecord (4.2.11.1) lib/active_record/attribute_methods/dirty.rb:21:in `save' activerecord (4.2.11.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save' activerecord (4.2.11.1) lib/active_record/transactions.rb:351:in `block in with_transaction_returning_status' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/transaction.rb:184:in `within_new_transaction' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.11.1) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.11.1) lib/active_record/transactions.rb:348:in `with_transaction_returning_status' activerecord (4.2.11.1) lib/active_record/transactions.rb:286:in `block in save' activerecord (4.2.11.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!' activerecord (4.2.11.1) lib/active_record/transactions.rb:285:in `save' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:25:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.4ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 14:51:43 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BK5b3AghPInEDCFhN1puvf8+W4Cv2CkhOo2MQrdOMAoyHp1KCoj91A+iYcoxbfDLmlcDtReQeae75EPvcm0lEw==", "simple_url"=>"http://localhost:9292/intro/admin/tours/new", "strict_route"=>"1", "tour"=>{"ident"=>"tours-new", "controller_path"=>"tours", "action_name"=>"new", "query"=>"", "options"=>{"steps"=>[{"title"=>"hello title", "content"=>"hello content", "image_url"=>"", "image_placement"=>"left", "element"=>".select-to", "placement"=>"top-start", "z_index"=>"100", "fixed_placement"=>"1"}, {"title"=>"bab", "content"=>"brabrabrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}}, "button"=>""} Unpermitted parameters: query, options  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'tours-new' LIMIT 1 SQL (2.7ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["route", "---\n:strict: true\n"], ["ident", "tours-new"], ["controller_path", "tours"], ["action_name", "new"], ["created_at", "2019-08-03 06:51:43.561933"], ["updated_at", "2019-08-03 06:51:43.561933"]]  (11.9ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/1 Completed 302 Found in 36ms (ActiveRecord: 15.4ms) Started GET "/intro/admin/tours/1" for ::1 at 2019-08-03 14:51:43 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (11.6ms) Completed 200 OK in 37ms (Views: 33.9ms | ActiveRecord: 0.3ms) Started PATCH "/intro/admin/tours" for ::1 at 2019-08-03 14:52:38 +0800 ActionController::RoutingError (No route matches [PATCH] "/intro/admin/tours"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-03 14:52:45 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.7ms) Completed 200 OK in 47ms (Views: 42.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 14:52:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.7ms) Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 14:53:02 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FInvBztJFdRYXyFQ7iBIktTI8jA71maaW8dVo5sccVgiOSmROeDUiZPxYfvoF9bksaGqBYOeNhzarpoOXj9kQQ==", "simple_url"=>"http://localhost:9292/intro/admin/tours/new", "tour"=>{"ident"=>"brabrba", "controller_path"=>"brabrba", "action_name"=>"brabrba", "query"=>"", "options"=>{"steps"=>[{"title"=>"brabrbarb", "content"=>"brabr", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brabrb", "content"=>"arbarbabrb", "image_url"=>"brabrb", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>""} Unpermitted parameters: query, options  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brabrba' LIMIT 1 SQL (0.7ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["route", "---\n:strict: \n"], ["ident", "brabrba"], ["controller_path", "brabrba"], ["action_name", "brabrba"], ["created_at", "2019-08-03 06:53:19.318027"], ["updated_at", "2019-08-03 06:53:19.318027"]]  (11.7ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/2 Completed 302 Found in 16935ms (ActiveRecord: 12.6ms) Started GET "/intro/admin/tours/2" for ::1 at 2019-08-03 14:53:19 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"2"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.9ms) Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 0.2ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 14:54:30 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FInvBztJFdRYXyFQ7iBIktTI8jA71maaW8dVo5sccVgiOSmROeDUiZPxYfvoF9bksaGqBYOeNhzarpoOXj9kQQ==", "simple_url"=>"http://localhost:9292/intro/admin/tours/new", "tour"=>{"ident"=>"brabrba", "controller_path"=>"brabrba", "action_name"=>"brabrba", "query"=>"", "options"=>{"steps"=>[{"title"=>"brabrbarbbarb", "content"=>"brabrbrabrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brabr", "content"=>"abrrbarbabr", "image_url"=>"brabrba", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>""} Unpermitted parameters: query, options Unpermitted parameters: query, options Unpermitted parameters: ident, controller_path, action_name, query, options Unpermitted parameters: controller_path, action_name, query, options Unpermitted parameters: controller_path, query, options Unpermitted parameters: controller_path, query, options Unpermitted parameters: query, options Unpermitted parameter: options Unpermitted parameter: options Unpermitted parameters: steps, btn_visible, btn_complete_text, btn_complete_link Unpermitted parameter: options Unpermitted parameters: steps, btn_visible, btn_complete_text, btn_complete_link Unpermitted parameter: steps  (0.3ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brabrba' LIMIT 1  (0.2ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 980629ms (Views: 49.0ms | ActiveRecord: 1.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 15:10:56 +0800 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.4ms) Completed 200 OK in 353ms (Views: 335.7ms | ActiveRecord: 0.3ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 15:11:06 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qowUxWRSUCYK1+hKyCJM6KMXZIp5Ak00B7e79O4cDUGcPNJTZvuRe8F5qOHOFdKexn48v8FKHbKG3nRZKz8YWA==", "simple_url"=>"brabrba", "tour"=>{"ident"=>"brabr", "controller_path"=>"brab", "action_name"=>"brb", "query"=>"brabrb", "options"=>{"steps"=>[{"title"=>"hello title", "content"=>"brbar", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>""}  (0.3ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brabr' LIMIT 1 SQL (0.4ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "---\n:strict: \n"], ["ident", "brabr"], ["controller_path", "brab"], ["action_name", "brb"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: hello title\n content: brbar\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-03 07:11:31.843095"], ["updated_at", "2019-08-03 07:11:31.843095"]]  (3.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/3 Completed 302 Found in 25043ms (ActiveRecord: 4.9ms) Started GET "/intro/admin/tours/3" for ::1 at 2019-08-03 15:11:31 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"3"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 3]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 34ms (Views: 27.1ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-03 15:30:41 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (10.9ms) Completed 200 OK in 33ms (Views: 28.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 15:30:42 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.0ms) Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 15:31:06 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"9W4VDjFnby/1cuCCyJQY2iZqQYV839Ur1hvf/vDApLrD3tOYM86ucj7coCnOo4asQwMZsMSXha1XchBTNeOxow==", "tour"=>{"route"=>{"simple_route"=>"http://localhost:9292/intro/admin/tours/new", "query"=>"brbarrba"}, "ident"=>"tours-newba", "controller_path"=>"brab", "action_name"=>"events", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbrabr", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}, {"title"=>"brabr", "content"=>"brabrbarbarbarb", "image_url"=>"brabr", "image_placement"=>"top", "element"=>"brabrab", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'tours-newba' LIMIT 1 SQL (0.4ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsimple_route: http://localhost:9292/intro/admin/tours/new\nquery: brbarrba\nstrict: \n"], ["ident", "tours-newba"], ["controller_path", "brab"], ["action_name", "events"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: barbrabr\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n fixed_placement: '1'\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: brabrbarbarbarb\n image_url: brabr\n image_placement: top\n element: brabrab\n placement: top\n z_index: '99'\n fixed_placement: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-03 07:33:00.550052"], ["updated_at", "2019-08-03 07:33:00.550052"]]  (4.1ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/4 Completed 302 Found in 113970ms (ActiveRecord: 4.6ms) Started GET "/intro/admin/tours/4" for ::1 at 2019-08-03 15:33:00 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"4"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 4]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.2ms) Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 15:37:43 +0800 ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (28.6ms) Completed 200 OK in 351ms (Views: 333.6ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 15:38:30 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.9ms) Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 15:38:53 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+nu9huknowNdtU026aRj3jxUrzL1oqWfJH82O97gbxvMy3sQ645iXpYbDZ3vk/2oWT33B03q9RmlFvmWG8N6Ag==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabr=brabrb", "strict"=>"1", "query"=>"brabarb"}, "ident"=>"brab", "controller_path"=>"brabrba", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brabr", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brab' LIMIT 1 SQL (1.0ms) INSERT INTO "intro_tours" ("ident", "controller_path", "options", "route", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["ident", "brab"], ["controller_path", "brabrba"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: barba\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: ''\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin/tours/new?brabr=brabrb\nstrict: '1'\nquery: brabarb\n"], ["created_at", "2019-08-03 07:45:03.516915"], ["updated_at", "2019-08-03 07:45:03.516915"]]  (5.0ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/5 Completed 302 Found in 369821ms (ActiveRecord: 6.3ms) Started GET "/intro/admin/tours/5" for ::1 at 2019-08-03 15:45:03 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"5"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 5]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.0ms) Completed 200 OK in 41ms (Views: 29.1ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/5" for ::1 at 2019-08-03 15:47:42 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"5"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 5]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (34.4ms) Completed 200 OK in 393ms (Views: 367.0ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-03 15:48:09 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.9ms) Completed 200 OK in 35ms (Views: 33.2ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 15:48:30 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.8ms) Completed 200 OK in 41ms (Views: 39.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 15:50:21 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"QdsUxHY6UaA9k5BqcTFYn8NiPbWZwcsRu2SJ3IhkHN13a9JSdJOQ/fY90MF3BsbppgtlgCGJm5c6DUZxTUcJxA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "strict"=>"1", "query"=>"brabrbarba"}, "ident"=>"brabrb", "controller_path"=>"brabrb", "action_name"=>"brabr", "options"=>{"steps"=>[{"title"=>"brabrba", "content"=>"rbrbarb", "image_url"=>"brabrab", "image_placement"=>"bottom", "element"=>"brabrb", "placement"=>"left-start", "z_index"=>"99", "fixed_placement"=>"1"}, {"title"=>"brabr", "content"=>"barbarb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brabrb' LIMIT 1 SQL (0.5ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin/tours/new?brabrb=brabrb\nstrict: true\nquery: brabrbarba\n"], ["ident", "brabrb"], ["controller_path", "brabrb"], ["action_name", "brabr"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrba\n content: rbrbarb\n image_url: brabrab\n image_placement: bottom\n element: brabrb\n placement: left-start\n z_index: '99'\n fixed_placement: '1'\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: barbarb\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-03 07:50:21.078134"], ["updated_at", "2019-08-03 07:50:21.078134"]]  (4.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/6 Completed 302 Found in 34ms (ActiveRecord: 5.1ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 15:50:21 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.6ms) Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.1ms) Started PATCH "/intro/admin/tours" for ::1 at 2019-08-03 15:50:32 +0800 ActionController::RoutingError (No route matches [PATCH] "/intro/admin/tours"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.9ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 15:50:38 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.7ms) Completed 200 OK in 35ms (Views: 32.8ms | ActiveRecord: 0.2ms) Started PATCH "/intro/admin/tours" for ::1 at 2019-08-03 15:52:42 +0800 ActionController::RoutingError (No route matches [PATCH] "/intro/admin/tours"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.9ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 15:53:19 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.5ms) Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 15:54:41 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.1ms) Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 15:55:28 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.4ms) Completed 200 OK in 42ms (Views: 39.8ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:06:49 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.9ms) Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:08:27 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.0ms) Completed 200 OK in 32ms (Views: 30.9ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:13:45 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (22.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (31.2ms) Completed 200 OK in 57ms (Views: 55.0ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:14:01 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.8ms) Completed 200 OK in 40ms (Views: 37.6ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:14:50 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.3ms) Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:16:01 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.1ms) Completed 200 OK in 37ms (Views: 35.3ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:18:32 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.2ms) Completed 200 OK in 38ms (Views: 35.0ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:19:28 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.9ms) Completed 200 OK in 45ms (Views: 43.1ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:20:09 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.8ms) Completed 200 OK in 42ms (Views: 39.3ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:21:19 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (22.8ms) Completed 200 OK in 53ms (Views: 49.5ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:23:20 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.8ms) Completed 200 OK in 39ms (Views: 38.2ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:24:05 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.6ms) Completed 200 OK in 44ms (Views: 41.8ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:24:51 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.1ms) Completed 200 OK in 33ms (Views: 31.1ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:26:11 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.3ms) Completed 200 OK in 49ms (Views: 46.3ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:26:54 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.9ms) Completed 200 OK in 45ms (Views: 42.4ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/6" for ::1 at 2019-08-03 16:33:19 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.5ms) Completed 200 OK in 51ms (Views: 39.1ms | ActiveRecord: 0.9ms) Started PATCH "/intro/admin/tours/6" for ::1 at 2019-08-03 16:33:33 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rqgmIPmEN6ca8l6ZvOFYoGsPOuquOIhuW5f8a4j0CfeYGOC2+y32+tFcHjK61sbWDmZi3xZw2Oja/jPGTdcc7g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "strict"=>"1", "query"=>"brabrbarba"}, "ident"=>"brabrb", "controller_path"=>"brabrb", "action_name"=>"brabr", "options"=>{"steps"=>[{"title"=>"brabrba", "content"=>"rbrbarb", "image_url"=>"brabrab", "image_placement"=>"bottom", "element"=>"brabrb", "placement"=>"left-start", "z_index"=>"99", "fixed_placement"=>"1"}, {"title"=>"brabr", "content"=>"barbarb", "image_url"=>"brbwr", "image_placement"=>"top", "element"=>"brabrbarb", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>"", "id"=>"6"} Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabrb' AND "intro_tours"."id" != 6) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin/tours/new?brabrb=brabrb\nstrict: true\nquery: brabrbarba\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrba\n content: rbrbarb\n image_url: brabrab\n image_placement: bottom\n element: brabrb\n placement: left-start\n z_index: '99'\n fixed_placement: '1'\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: barbarb\n image_url: brbwr\n image_placement: top\n element: brabrbarb\n placement: top\n z_index: '99'\n fixed_placement: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-03 08:33:33.192436"], ["id", 6]]  (7.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.3ms) Completed 200 OK in 69ms (Views: 42.0ms | ActiveRecord: 8.9ms) Started PATCH "/intro/admin/tours/6" for ::1 at 2019-08-03 16:33:40 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WTpvx5PWVuc5yPq1i2f/TzLtS1xTIS/Zl/H9ablvR8JviqlRkX+XuvJmuh6NUGE5V4QTaetpf18WmDLEfExS2w==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "query"=>"brabrbarbabrabrb"}, "ident"=>"brabrb", "controller_path"=>"brabrb", "action_name"=>"brabr", "options"=>{"steps"=>[{"title"=>"brabrba", "content"=>"rbrbarb", "image_url"=>"brabrab", "image_placement"=>"bottom", "element"=>"brabrb", "placement"=>"left-start", "z_index"=>"99", "fixed_placement"=>"1"}, {"title"=>"brabr", "content"=>"barbarb", "image_url"=>"brbwr", "image_placement"=>"top", "element"=>"brabrbarb", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>"", "id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabrb' AND "intro_tours"."id" != 6) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin/tours/new?brabrb=brabrb\nquery: brabrbarbabrabrb\nstrict: false\n"], ["updated_at", "2019-08-03 08:33:40.263321"], ["id", 6]]  (5.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.9ms) Completed 200 OK in 60ms (Views: 35.9ms | ActiveRecord: 6.0ms) Started PATCH "/intro/admin/tours/6" for ::1 at 2019-08-03 16:33:51 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"XeJ43RxWkYkZjoMvKb3KeoTavpO1EgszbHDm7V5dAWlrUr5LHv9Q1NIgw4QvilQM4bPmpg1aW7XtGSlAm34UcA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "strict"=>"1", "query"=>"brabrbarbabrabrb"}, "ident"=>"brabrb", "controller_path"=>"brabrb", "action_name"=>"brabr", "options"=>{"steps"=>[{"title"=>"brabrba", "content"=>"rbrbarb", "image_url"=>"brabrab", "image_placement"=>"bottom", "element"=>"brabrb", "placement"=>"left-start", "z_index"=>"99", "fixed_placement"=>"1"}, {"title"=>"brba", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}}, "button"=>"", "id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabrb' AND "intro_tours"."id" != 6) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin/tours/new?brabrb=brabrb\nstrict: true\nquery: brabrbarbabrabrb\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrba\n content: rbrbarb\n image_url: brabrab\n image_placement: bottom\n element: brabrb\n placement: left-start\n z_index: '99'\n fixed_placement: '1'\n- !ruby/hash:ActionController::Parameters\n title: brba\n content: brabrb\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-03 08:33:51.306288"], ["id", 6]]  (7.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 46ms (Views: 25.5ms | ActiveRecord: 7.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-03 16:34:14 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (8.6ms) Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 16:39:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.2ms) Completed 200 OK in 42ms (Views: 40.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 16:40:38 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.7ms) Completed 200 OK in 46ms (Views: 45.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 16:40:57 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (23.9ms) Completed 200 OK in 50ms (Views: 47.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 16:41:22 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (27.5ms) Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 16:41:53 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.0ms) Completed 200 OK in 54ms (Views: 52.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 16:43:10 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (23.1ms) Completed 200 OK in 46ms (Views: 45.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-03 16:45:05 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"OLzJ726FvBL3XMJEtF3vCGUxZ8wJdOTNIjLVsW6286gODA95bCx9Tzzygu+yanF+AFg/+bE8tEujWxocq5XmsQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at(1i)"=>"2022", "expired_at(2i)"=>"", "expired_at(3i)"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brbarba' LIMIT 1 SQL (0.7ms) INSERT INTO "intro_tours" ("route", "ident", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["ident", "brbarba"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-03 08:45:50.600366"], ["updated_at", "2019-08-03 08:45:50.600366"]]  (4.0ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/7 Completed 302 Found in 44980ms (ActiveRecord: 7.1ms) Started GET "/intro/admin/tours/7" for ::1 at 2019-08-03 16:45:50 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.9ms) Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/7" for ::1 at 2019-08-03 16:46:24 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"7"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (32.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (37.8ms) Completed 500 Internal Server Error in 46ms (ActiveRecord: 0.3ms) ActionView::Template::Error (undefined method `select_date' for #): 82:
83:
84: <%= f.label :expired_at, t('intro.admin.tour.expired_time') %> 85: <%= f.select_date :expired_at, include_blank: true %> 86:
87:
88:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:85:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___4176910022253909201_70344289684540' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___4176910022253909201_70344289684540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__791825660556174217_70344301620080' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__2537857906849485136_47189478316100' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__791825660556174217_70344301620080' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:31:in `show' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.1ms) Started GET "/intro/admin/tours/7" for ::1 at 2019-08-03 16:49:34 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.5ms) Completed 200 OK in 48ms (Views: 46.0ms | ActiveRecord: 0.2ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 16:49:40 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7bzbRofKo9IMTOVWXjN4UlUdo3ufvCTlI/sgW/XKGqTbDB3QhWNij8fipf1YBOYkMHT7Tif0dGOiku/2MOkPvQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at(1i)"=>"", "expired_at(2i)"=>"", "expired_at(3i)"=>""}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.4ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (0.6ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-03 08:53:16.449474"], ["id", 7]]  (7.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.4ms) Completed 200 OK in 216247ms (Views: 34.0ms | ActiveRecord: 9.4ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 16:53:36 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7bzbRofKo9IMTOVWXjN4UlUdo3ufvCTlI/sgW/XKGqTbDB3QhWNij8fipf1YBOYkMHT7Tif0dGOiku/2MOkPvQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at(1i)"=>"", "expired_at(2i)"=>"", "expired_at(3i)"=>""}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-03 08:53:36.264530"], ["id", 7]]  (4.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.4ms) Completed 200 OK in 63ms (Views: 36.5ms | ActiveRecord: 5.6ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 16:57:32 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7bzbRofKo9IMTOVWXjN4UlUdo3ufvCTlI/sgW/XKGqTbDB3QhWNij8fipf1YBOYkMHT7Tif0dGOiku/2MOkPvQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at(1i)"=>"", "expired_at(2i)"=>"", "expired_at(3i)"=>""}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-03 08:57:32.978800"], ["id", 7]]  (5.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.5ms) Completed 200 OK in 59ms (Views: 31.5ms | ActiveRecord: 7.1ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 16:58:09 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1TW8rkyQbugqywF75XH0QT/mMVz6HsxnPL0tNjxHnsbjhXo4TjmvteFlQdDjRmo3Wo9paUJWnOG91OKb+WSL3w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "expired_at" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["expired_at", "2019-08-30 00:00:00.000000"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: bababba\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-03 08:58:09.711375"], ["id", 7]]  (7.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (8.8ms) Completed 200 OK in 45ms (Views: 27.4ms | ActiveRecord: 7.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-03 16:58:15 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (23.0ms) Completed 200 OK in 44ms (Views: 41.5ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/7/edit" for ::1 at 2019-08-03 16:59:14 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.8ms) Completed 200 OK in 47ms (Views: 35.0ms | ActiveRecord: 0.8ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 16:59:17 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.2ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.0ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (9.8ms) Completed 200 OK in 34ms (Views: 24.6ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:00:14 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.3ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.4ms) Completed 200 OK in 55ms (Views: 39.8ms | ActiveRecord: 0.8ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:00:57 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.6ms) Completed 200 OK in 53ms (Views: 41.9ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:02:11 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.8ms) Completed 200 OK in 209ms (Views: 197.8ms | ActiveRecord: 0.7ms) Started GET "/assets/intro/admin/components/form.self-f2a90369fac567d971684944060f109d4e851718718f885fd7cbe1227eb5d618.css?body=1" for ::1 at 2019-08-03 17:02:11 +0800 Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:02:23 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.1ms) Completed 200 OK in 143ms (Views: 128.9ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/components/form.self-9a4f54b7b47a70a2995832a6a4639dc96b74d91dae745d95aef7a91af2eff9ba.css?body=1" for ::1 at 2019-08-03 17:02:23 +0800 Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:02:30 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.1ms) Completed 200 OK in 145ms (Views: 129.9ms | ActiveRecord: 0.8ms) Started GET "/assets/intro/admin/components/form.self-16044f93e5037450c88d5f1adf70b1cf8977c07a090e8a481a28ccffd2d519ea.css?body=1" for ::1 at 2019-08-03 17:02:30 +0800 Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:03:13 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.8ms) Completed 200 OK in 158ms (Views: 141.2ms | ActiveRecord: 0.7ms) Started GET "/assets/intro/admin/components/form.self-eafde24d46686ede067e130e002232bb57ff815b72d3a340920ca2f7a0205749.css?body=1" for ::1 at 2019-08-03 17:03:13 +0800 Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:03:23 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.4ms) Completed 200 OK in 134ms (Views: 120.0ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/components/form.self-4e75d2b4f74295ee4c406666340758ad91ccd5c7c8a4b1ef8b59b1cccfcd7d3a.css?body=1" for ::1 at 2019-08-03 17:03:23 +0800 Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:06:53 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.3ms) Completed 500 Internal Server Error in 36ms (ActiveRecord: 0.6ms) ActionView::Template::Error (undefined local variable or method `message' for #<#:0x007ff49edb31d0>): 1: <%= form_for @tour, url: url, html: { class: "intro-admin__form intro-admin__tour-form #{yield(:tour_form_class)}" } do |f| %> 2: <% if flash.notice %> 3:
4: <%= content_tag :div, flash.notice, class: message %> 5:
6: <% elsif @tour.errors.any? %> 7:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:4:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___4176910022253909201_70344306669800' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___4176910022253909201_70344306669800' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__791825660556174217_70344301620080' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__2537857906849485136_47189478316100' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__791825660556174217_70344301620080' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:38:in `update' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.6ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:07:15 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (21.7ms) Completed 200 OK in 60ms (Views: 45.2ms | ActiveRecord: 1.0ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:11:22 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.7ms) Completed 200 OK in 246ms (Views: 232.4ms | ActiveRecord: 0.9ms) Started GET "/assets/intro/admin/components/form.self-334835204577e67b33c100cdef874b182876fa2c7aa351859f5949227d6b0790.css?body=1" for ::1 at 2019-08-03 17:11:22 +0800 Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:11:41 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GljWEfKe91LRYn9exgcKfJSjgIKtZhBpQ0rweNu7udQs6BCH8Dc2DxrMP/XAMJQK8crYtxUuQO/CIz/VHpiszQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.8ms) Completed 200 OK in 171ms (Views: 154.9ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/components/form.self-b57899e2b323f53b1ddf465047da24df696a698d130ce4b509108863ed7251d8.css?body=1" for ::1 at 2019-08-03 17:11:41 +0800 Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:11:47 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UZMJ6IZNR6OU/mX37Dk+wjUidX2G6YrCt0CwVmSEkBFnI89+hOSG/l9QJVzqDqC0UEstSD6h2kQ2KX/7oaeFCA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"bra", "action_name"=>"brab", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (1.2ms) UPDATE "intro_tours" SET "route" = ?, "controller_path" = ?, "action_name" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["controller_path", "bra"], ["action_name", "brab"], ["updated_at", "2019-08-03 09:11:47.240307"], ["id", 7]]  (6.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.7ms) Completed 200 OK in 63ms (Views: 42.6ms | ActiveRecord: 7.7ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:12:41 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UZMJ6IZNR6OU/mX37Dk+wjUidX2G6YrCt0CwVmSEkBFnI89+hOSG/l9QJVzqDqC0UEstSD6h2kQ2KX/7oaeFCA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"bra", "action_name"=>"brab", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-03 09:12:41.479945"], ["id", 7]]  (17.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.5ms) Completed 200 OK in 184ms (Views: 144.5ms | ActiveRecord: 18.5ms) Started GET "/assets/intro/admin/components/form.self-b70b0329dc61f21560f1e41a9547b63a1fa44929167019f8569118d055c2548e.css?body=1" for ::1 at 2019-08-03 17:12:41 +0800 Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:13:15 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1NUKC6L2k7x1uQokZfzIXLijSaUy5LhxBjPm4sHWi53iZcydoF9S4b4XSo9jy1Yq3coRkIqs6PeHWilPBPWehA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"brab", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 37ms (Views: 29.6ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:13:29 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0cToN9HUkmGKzKiK/3OGgw8ev35C/eVdRVR5bsMyYHvndC6h031TPEFi6CH5RBj1anfnS/q1tdvEPbbDBhF1Yg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.0ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.5ms) Completed 200 OK in 50ms (Views: 31.8ms | ActiveRecord: 1.4ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:13:33 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+mTo68D69oIQ7Z7dhUzotbRTonW59nSUk4WMEsxjw7jM1C59wlM339tD3naDe3bD0Tr6QAG+JBIS7EO/CUDWoQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"brabr", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 50ms (Views: 44.2ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:13:36 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"SERHa8q4Y+bOffR93l5T1CmBNQlZt7hBobxRaErbfiB+9IH9yBGiuwXTtNbYac2iTOhtPOH/6Mcg1Z7Fj/hrOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"brabr", "action_name"=>"brab", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "controller_path" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["controller_path", "brabr"], ["updated_at", "2019-08-03 09:13:36.318476"], ["id", 7]]  (11.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (9.4ms) Completed 200 OK in 55ms (Views: 27.7ms | ActiveRecord: 11.8ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:13:40 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LHd83/Ojn0HVTTlU1s/x0BkbUeJ7/tN2EZZFvxCKwEoax7pJ8QpeHB7jef/Q+G+mfHIJ18O2g/CQ/4oS1anVUw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"brab", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.0ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (11.9ms) Completed 200 OK in 36ms (Views: 28.5ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/7" for ::1 at 2019-08-03 17:13:55 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"EzVAPNfbt/Rx6zOHjqcOqkLZnNYxJmOJKrCHAFmsjywlhYaq1XJ2qbpFcyyIkJDcJ7DE44luMw+r2UitnI+aNQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brbarba", "controller_path"=>"", "action_name"=>"brab", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"bababba", "btn_complete_link"=>""}, "expired_at"=>"2019-08-30"}, "button"=>"", "id"=>"7"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1  (0.1ms) rollback transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.0ms) Completed 200 OK in 55ms (Views: 38.0ms | ActiveRecord: 0.9ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-03 17:15:12 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"ZBBRq88KjMCvFk9cHsT96tuH9zDJmucGzNP6Na3ZoAlSoJc9zaNNnWS4D/cY82Ocvu6vBXHSt4BNujWYaPq1EA=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-03 17:15:12 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-03 17:15:16 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GxqSHnxwIRrAkPrOzdsVQvtPQ/b1SXGZ8nP/zwKCJjMtqlSIftngRws+umXL7Is0niYbw00BIR9zGjBix6EzKg==", "username"=>"WRDkzl42", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.2ms) Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-03 17:15:20 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"85DCfp/u6iAMTDQgdtlfk9KsJMaeWQJSAuwpS6/N9ivFIATonUcrfcfidItw7sHlt8V88yYRUtSDhebmau7jMg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-03 17:15:20 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (10.6ms) Completed 200 OK in 42ms (Views: 41.1ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 17:15:22 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.1ms) Completed 200 OK in 40ms (Views: 38.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 17:17:19 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.4ms) Completed 200 OK in 41ms (Views: 39.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 17:17:29 +0800 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.4ms) Completed 200 OK in 413ms (Views: 395.4ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 17:18:59 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.6ms) Completed 200 OK in 172ms (Views: 170.3ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/body.self-378da604800b1f12c8fd682e6f2f6f0df87305c0b5f7f2b5d9b75f63bfd52cd3.css?body=1" for ::1 at 2019-08-03 17:19:00 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 17:19:20 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (28.6ms) Completed 200 OK in 379ms (Views: 362.2ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 17:20:19 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.1ms) Completed 200 OK in 39ms (Views: 37.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 17:20:47 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.3ms) Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 17:20:55 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (28.9ms) Completed 200 OK in 329ms (Views: 311.7ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-03 17:22:18 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.9ms) Completed 200 OK in 44ms (Views: 39.0ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 23:03:21 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (31.5ms) Completed 200 OK in 345ms (Views: 326.8ms | ActiveRecord: 0.3ms) Started GET "/rails/routes" for ::1 at 2019-08-03 23:03:26 +0800 ActionController::RoutingError (No route matches [GET] "/rails/routes"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (20.8ms) Started GET "/rails/routes/info" for ::1 at 2019-08-03 23:03:31 +0800 ActionController::RoutingError (No route matches [GET] "/rails/routes/info"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.6ms) Started GET "/rails/info/routes" for ::1 at 2019-08-03 23:03:53 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (6.1ms) Completed 200 OK in 11ms (Views: 11.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-03 23:11:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 70ms (Views: 61.8ms | ActiveRecord: 0.5ms) Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."id" DESC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."id" DESC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."id" DESC LIMIT 1 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 13:35:14 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.2ms) Completed 200 OK in 366ms (Views: 348.0ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 13:35:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (12.9ms) Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 13:35:59 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.2ms) Completed 200 OK in 38ms (Views: 35.4ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 13:37:41 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.4ms) Completed 200 OK in 37ms (Views: 34.1ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 13:38:49 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (19.8ms) Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:05:06 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.9ms) Completed 200 OK in 122ms (Views: 121.0ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/tours.self-71734f1f4d8236f1980e6384a796917417bf7028b3f047c199ea41308f5090ea.css?body=1" for ::1 at 2019-08-04 14:05:06 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:07:18 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.6ms) Completed 200 OK in 53ms (Views: 51.1ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-86f525252fb048711bcd1c95abf851a5883c866cb14efffc747c2efe022475a6.css?body=1" for ::1 at 2019-08-04 14:07:18 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:11:11 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.9ms) Completed 200 OK in 51ms (Views: 48.8ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-186b5e211649e5c3afb916f9bcae4604bb269b9ea65c902e808542d49ae70306.css?body=1" for ::1 at 2019-08-04 14:11:11 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:11:20 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.8ms) Completed 200 OK in 52ms (Views: 50.2ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-656d57f8d7fed7b38a11dfa5eabfa9b69867e59d8e8e97bee997b9d20eea5671.css?body=1" for ::1 at 2019-08-04 14:11:20 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:11:54 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.4ms) Completed 200 OK in 31ms (Views: 29.1ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:12:16 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.4ms) Completed 200 OK in 54ms (Views: 51.9ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-e333344011b7ac70f69d12ab96e6c3c976aa2d60fe6040f8cd1766a678829dff.css?body=1" for ::1 at 2019-08-04 14:12:16 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:13:11 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.7ms) Completed 200 OK in 90ms (Views: 88.9ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-4f6d91bed98b8bf1d1ce41cf40e47c758919182c6fd51a7d816d4b975615db0c.css?body=1" for ::1 at 2019-08-04 14:13:11 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:14:05 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (12.1ms) Completed 200 OK in 63ms (Views: 60.8ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-3f4485c8d202571ab48b016963112f25b4368ecbf667a7f5612844db644af0d1.css?body=1" for ::1 at 2019-08-04 14:14:05 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:14:42 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.4ms) Completed 200 OK in 56ms (Views: 53.8ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-169be0e7bc20715d48d32db152a8975a423b6f5b5fc5408e710afaae418bd5ec.css?body=1" for ::1 at 2019-08-04 14:14:42 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 14:15:04 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.6ms) Completed 200 OK in 39ms (Views: 37.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:15:09 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.0ms) Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:15:47 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.2ms) Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:16:16 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:17:19 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.4ms) Completed 200 OK in 66ms (Views: 63.8ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/admin/tours.self-ed1193859a24c20036fc16111ea2e7054a1fa6b3b84982558442022b6456a94f.css?body=1" for ::1 at 2019-08-04 14:17:19 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:17:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (8.1ms) Completed 200 OK in 95ms (Views: 94.2ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/tours.self-30981b251c6d6bcb1c0f8c93a88d8e5d6777a50dc48697028c9d1fc4fa5348a3.css?body=1" for ::1 at 2019-08-04 14:17:57 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:18:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.3ms) Completed 200 OK in 67ms (Views: 66.0ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-190d8e363d7e5c58617a29df20c77517c9a657ff2fa4fcd40b322f09b6238922.css?body=1" for ::1 at 2019-08-04 14:18:03 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:18:38 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (13.2ms) Completed 200 OK in 43ms (Views: 40.3ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:20:59 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.0ms) Completed 200 OK in 65ms (Views: 62.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/tours.self-18d91a77a8c42275443d0170e170ad51aad36067e98ae7294dafa4ffb7ec13d4.css?body=1" for ::1 at 2019-08-04 14:20:59 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:21:01 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.7ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (21.3ms) Completed 200 OK in 46ms (Views: 43.0ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:21:34 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (13.3ms) Completed 200 OK in 71ms (Views: 70.1ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tours.self-38590226ea64952dfdbdbeb2eb0a36c0ae28ff2c06863c7086b7d7fa462cb468.css?body=1" for ::1 at 2019-08-04 14:21:34 +0800 Started GET "/intro/admin/tours/7/edit" for ::1 at 2019-08-04 14:23:20 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"7"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (11.7ms) Completed 200 OK in 36ms (Views: 28.5ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:25:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (2.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.2ms) Completed 200 OK in 49ms (Views: 42.5ms | ActiveRecord: 2.5ms) Started PUT "/intro/admin/tours/7/publish?published=true" for ::1 at 2019-08-04 14:25:05 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"Q9hGBpWGkZKDh9IC9agb4q9+gfGThrLED2AbBkXrR6p1aICQly9Qz0gpkqnzn4WUyhfZxCvO4kKOCdSrgMhSsw==", "published"=>"true", "tour_id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" IS NULL LIMIT 1 Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) NoMethodError (undefined method `redirct_to' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:62:in `block (2 levels) in require_tour' actionpack (4.2.11.1) lib/action_controller/metal/mime_responds.rb:217:in `call' actionpack (4.2.11.1) lib/action_controller/metal/mime_responds.rb:217:in `respond_to' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:61:in `require_tour' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:26:28 +0800 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (25.7ms) Completed 200 OK in 382ms (Views: 369.4ms | ActiveRecord: 0.5ms) Started PUT "/intro/admin/tours/7/publish?published=true" for ::1 at 2019-08-04 14:26:30 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"WvvNYcNWHAVJUHxC/Y7TOvTwkC6o+dm0dzjUaZ9FbGtsSwv3wf/dWIL+POn7uU1MkZnIGxCxiTL2URvEWmZ5cg==", "published"=>"true", "tour_id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-04 06:26:30.493171"], ["id", 7]]  (7.0ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 33ms (ActiveRecord: 7.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:26:30 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (8.6ms) Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.2ms) Started PUT "/intro/admin/tours/6/publish?published=true" for ::1 at 2019-08-04 14:26:34 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"Sx5rKeCF91WzFEwb3YKnBkUDliv5z70eiVVufUNU9wB9rq2/4iw2CHi6DLDbtTlwIGrOHkGH7ZgIPKHQhnfiGQ==", "published"=>"true", "tour_id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabrb' AND "intro_tours"."id" != 6) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-04 06:26:34.323846"], ["id", 6]]  (5.3ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 14ms (ActiveRecord: 5.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:26:34 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.9ms) Completed 200 OK in 62ms (Views: 61.3ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:26:36 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (28.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (34.7ms) Completed 200 OK in 58ms (Views: 55.3ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/6" for ::1 at 2019-08-04 14:26:48 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"kKmZCecf/chxixUfmiJ2VPdTANCn6OecOHaz3xmTRICmGV+f5bY8lbolVbScFegikjpY5R+gtxq5H3xy3LBRmQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "strict"=>"1", "query"=>"brabrbarbabrabrb"}, "ident"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "controller_path"=>"brabrb", "action_name"=>"brabr", "options"=>{"steps"=>[{"title"=>"brabrba", "content"=>"rbrbarb", "image_url"=>"brabrab", "image_placement"=>"bottom", "element"=>"brabrb", "placement"=>"left-start", "z_index"=>"99", "fixed_placement"=>"1"}, {"title"=>"brba", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'http://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrb' AND "intro_tours"."id" != 6) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "ident" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin/tours/new?brabrb=brabrb\nstrict: true\nquery: brabrbarbabrabrb\n"], ["ident", "http://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrb"], ["updated_at", "2019-08-04 06:26:48.942203"], ["id", 6]]  (7.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.0ms) Completed 200 OK in 42ms (Views: 23.0ms | ActiveRecord: 7.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:26:50 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.4ms) Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:30:15 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (18.8ms) Completed 200 OK in 48ms (Views: 45.5ms | ActiveRecord: 0.5ms) Started PUT "/intro/admin/tours/7/publish?published=false" for ::1 at 2019-08-04 14:30:17 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"55v5mgKDmcYLTvUy+keDBvt6xGe5VPR2JY9paIzw7bLRKz8MACpYm8DgtZn8cB1wnhOcUgEcpPCk5qbFSdP4qw==", "published"=>"false", "tour_id"=>"7"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarba' AND "intro_tours"."id" != 7) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "f"], ["updated_at", "2019-08-04 06:30:17.257031"], ["id", 7]]  (8.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 18ms (ActiveRecord: 9.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:30:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.2ms) Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:31:29 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (19.1ms) Completed 200 OK in 42ms (Views: 36.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:32:00 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.3ms) Completed 200 OK in 37ms (Views: 32.5ms | ActiveRecord: 0.7ms) Started DELETE "/intro/admin/tours/1" for ::1 at 2019-08-04 14:33:05 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"vPuidsc6HCGyW4lwyzFBBDJ+4o508wmBlH/ZL2IxAaeKS2TgxZPdfHn1ydvNBt9yVxe6u8y7WQcVFhaCpxIUvg==", "id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 1]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 1]]  (5.3ms) commit transaction Completed 500 Internal Server Error in 35ms (ActiveRecord: 6.1ms) NameError (undefined local variable or method `admin_system_tours_path' for #): /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:43:in `destroy' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.5ms) Started DELETE "/intro/admin/tours/1" for ::1 at 2019-08-04 14:33:21 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"vPuidsc6HCGyW4lwyzFBBDJ+4o508wmBlH/ZL2IxAaeKS2TgxZPdfHn1ydvNBt9yVxe6u8y7WQcVFhaCpxIUvg==", "id"=>"1"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Redirected to http://localhost:9292/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 7ms (ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:33:23 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (16.7ms) Completed 200 OK in 47ms (Views: 42.3ms | ActiveRecord: 0.9ms) Started DELETE "/intro/admin/tours/2" for ::1 at 2019-08-04 14:33:25 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"I9gyWlmQVboP1/27XQx/aIuZ79TpjxihMTcvpMMQYAoVaPTMWzmU58R5vRBbO+Ee7vC34VHHSCewXuAJBjN1Ew==", "id"=>"2"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 2]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 2]]  (8.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 20ms (ActiveRecord: 9.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:33:25 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:35:51 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (19.2ms) Completed 200 OK in 43ms (Views: 38.6ms | ActiveRecord: 0.8ms) Started DELETE "/intro/admin/tours/7" for ::1 at 2019-08-04 14:35:53 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"me7CBrrvbyO4nMlUai7JocvXXodwh4RZ3WgiVZGUq7uvXgSQuEaufnMyif9sGVfXrr4GssjP1N9cAe34VLe+og==", "id"=>"7"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 7]]  (0.0ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 7]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 7]]  (6.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 18ms (ActiveRecord: 7.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:35:53 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.6ms) Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:36:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (12.7ms) Completed 200 OK in 36ms (Views: 33.3ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/tours/3" for ::1 at 2019-08-04 14:36:04 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"KUYV1nU6ewCcJ9FZmMcsvQtKLdYotP47AoYF2G/abOUf9tNAd5O6XVeJkfKe8LLLbiN145D8rr2D78p1qvl5/A==", "id"=>"3"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 3]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 3]]  (5.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 10ms (ActiveRecord: 6.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:36:04 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.6ms) Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:36:43 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (8.9ms) Completed 200 OK in 32ms (Views: 30.0ms | ActiveRecord: 0.3ms) Started DELETE "/intro/admin/tours/4" for ::1 at 2019-08-04 14:36:47 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"/bcuwa8XgRXaWAot2xaIbyxyGzEH+U4vz2H/NLNcc+XLB+hXrb5ASBH2SobdIRYZSRtDBL+xHqlOCDCZdn9m/A==", "id"=>"4"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 4]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 4]]  (12.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 18ms (ActiveRecord: 13.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:36:47 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.9ms) Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.2ms) Started PUT "/intro/admin/tours/5/publish?published=true" for ::1 at 2019-08-04 14:36:51 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"Bf+cy3apz5MpoMTxDfU+xdPyvNVb00r90XVKSonQ2yYzT1pddAAOzuIOhFoLwqCztpvk4OObGntQHIXnTPPOPw==", "published"=>"true", "tour_id"=>"5"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 5]]  (0.2ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 5) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin/tours/new?brabr=brabrb\nstrict: true\nquery: brabarb\n"], ["published", "t"], ["updated_at", "2019-08-04 06:36:51.284542"], ["id", 5]]  (13.5ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 34ms (ActiveRecord: 14.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:36:51 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (6.9ms) Completed 200 OK in 29ms (Views: 27.6ms | ActiveRecord: 0.3ms) Started PUT "/intro/admin/tours/5/publish?published=false" for ::1 at 2019-08-04 14:36:52 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"x1+XoQPXXN+xRFY08FKSkKl40qOKE+fEOg9pgRZHvBzx71E3AX6dgnrqFp/2ZQzmzBGKljJbt0K7ZqYs02SpBQ==", "published"=>"false", "tour_id"=>"5"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 5) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "f"], ["updated_at", "2019-08-04 06:36:52.299413"], ["id", 5]]  (19.1ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 36ms (ActiveRecord: 20.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:36:52 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.6ms) Completed 200 OK in 39ms (Views: 37.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:36:53 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.5ms) Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:36:57 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.0ms) Completed 200 OK in 31ms (Views: 29.6ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:37:02 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.0ms) Completed 200 OK in 43ms (Views: 40.6ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:37:21 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (8.0ms) Completed 200 OK in 33ms (Views: 31.1ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/5/edit" for ::1 at 2019-08-04 14:37:26 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"5"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 5]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.0ms) Completed 200 OK in 36ms (Views: 34.5ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/5/edit" for ::1 at 2019-08-04 14:39:55 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"5"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 5]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.5ms) Completed 200 OK in 49ms (Views: 40.0ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/tours/5" for ::1 at 2019-08-04 14:40:00 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"djLtk7w8l/79Kosot+w5hw/N1Cwd0LNn6nCQ/no1JRhAgisFvpVWozaEy4Ox26fxaqSMGaWY4+FrGV9TvxYwAQ==", "id"=>"5"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 5]] SQL (0.3ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 5]]  (5.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 18ms (ActiveRecord: 6.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:40:00 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.8ms) Completed 200 OK in 44ms (Views: 42.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:40:01 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.3ms) Completed 200 OK in 37ms (Views: 35.0ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:42:15 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.1ms) Completed 200 OK in 40ms (Views: 37.8ms | ActiveRecord: 0.1ms) Started PUT "/intro/admin/tours/6/publish?published=false" for ::1 at 2019-08-04 14:42:22 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"NTWSOzbFk4Deiabkql2udriGzhLJIEYdEOMTuJLlJTwDhVStNGxS3RUn5k+sajAA3e+WJ3FoFpuRitwVV8YwJQ==", "published"=>"false", "tour_id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'http://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrb' AND "intro_tours"."id" != 6) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "f"], ["updated_at", "2019-08-04 06:42:22.867151"], ["id", 6]]  (5.5ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/6/edit Completed 302 Found in 20ms (ActiveRecord: 6.4ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:42:22 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.5ms) Completed 200 OK in 34ms (Views: 32.6ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:43:03 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.0ms) Completed 200 OK in 60ms (Views: 57.0ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/button.self-67129379a9d72327bf7f9352ec899a659aa3798c4e744c4572aa43797d0ae9bb.css?body=1" for ::1 at 2019-08-04 14:43:03 +0800 Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:43:33 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.4ms) Completed 200 OK in 63ms (Views: 60.3ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/button.self-8188fdde1d55bb5860ebd152d15fecada66a88b7c490eb0a1bed52d66b87cd51.css?body=1" for ::1 at 2019-08-04 14:43:33 +0800 Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:43:48 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.9ms) Completed 200 OK in 46ms (Views: 44.6ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:43:57 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (21.5ms) Completed 200 OK in 44ms (Views: 41.3ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:44:20 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 59ms (Views: 57.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/button.self-91fbb590e718edaa46eb1497d7f9c138fd6234817f9b30498cfb7119a5589787.css?body=1" for ::1 at 2019-08-04 14:44:20 +0800 Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:45:33 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.0ms) Completed 200 OK in 58ms (Views: 56.1ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/button.self-26c249d6b1480d5daab861bad2b1e84074bb3e871fde46f7d89b5b093a3d8930.css?body=1" for ::1 at 2019-08-04 14:45:33 +0800 Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:45:40 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (22.1ms) Completed 200 OK in 64ms (Views: 61.3ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/button.self-a542dc420b8247ef92b96ec1e0335fc66fc526dbaf60c66e3b381c378342c558.css?body=1" for ::1 at 2019-08-04 14:45:40 +0800 Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:46:00 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.7ms) Completed 200 OK in 57ms (Views: 55.6ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/admin/components/button.self-83326889818cee1253900f0f52b75e07143710d40fd4e372daf3dee750e72039.css?body=1" for ::1 at 2019-08-04 14:46:00 +0800 Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:46:24 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.6ms) Completed 200 OK in 54ms (Views: 52.8ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/admin/components/button.self-74aeb6cc0a0f11fa7baab67b459c6774c8839d5cf686021f0525dc91098b57f6.css?body=1" for ::1 at 2019-08-04 14:46:25 +0800 Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:46:26 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.3ms) Completed 200 OK in 48ms (Views: 45.3ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:47:09 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.8ms) Completed 200 OK in 58ms (Views: 55.4ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/button.self-2a058b1126d55250c6b4cd9f6ad31f66f9884d2f8b81fa15d0f21c819880b7d4.css?body=1" for ::1 at 2019-08-04 14:47:09 +0800 Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:47:16 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Redirected to http://localhost:9292/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-04 14:47:16 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-08-04 14:47:17 +0800 Started GET "/assets/intro/admin/components/button.self-2a058b1126d55250c6b4cd9f6ad31f66f9884d2f8b81fa15d0f21c819880b7d4.css?body=1" for ::1 at 2019-08-04 14:47:17 +0800 Started GET "/assets/intro/admin/components/form.self-b70b0329dc61f21560f1e41a9547b63a1fa44929167019f8569118d055c2548e.css?body=1" for ::1 at 2019-08-04 14:47:17 +0800 Started GET "/assets/intro/admin/tours.self-38590226ea64952dfdbdbeb2eb0a36c0ae28ff2c06863c7086b7d7fa462cb468.css?body=1" for ::1 at 2019-08-04 14:47:17 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-08-04 14:47:33 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"J5F8jU8d1ua7BLQ4vG5ae962cESCMHKzCfhOSp12kkCaskAGkGmk9QEi/eu87zHxhwXyDGCtJxGHzgnnkx+ZhA==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:47:33 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (4.4ms) Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:47:35 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.3ms) Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.1ms) Started PUT "/intro/admin/tours/6/publish?published=true" for ::1 at 2019-08-04 14:48:21 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"hXvQmrrPpddv5sjY4Gu96VHJqqFR+kLlYA/sXbLDxPSzyxYMuGZkiqRIiHPmXCOfNKDylOmyEmPhZiPwd+DR7Q==", "published"=>"true", "tour_id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'http://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrb' AND "intro_tours"."id" != 6) LIMIT 1 SQL (0.6ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-04 06:48:21.996236"], ["id", 6]]  (5.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/6/edit Completed 302 Found in 33ms (ActiveRecord: 6.4ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:48:22 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.2ms) Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.1ms) Started PUT "/intro/admin/tours/6/publish?published=false" for ::1 at 2019-08-04 14:48:24 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"2nghkF8b2tV1JJUyk8BwlAQ6TMiFwVzFVpQRn++R72HsyOcGXbIbiL6K1ZmV9+7iYVMU/T2JDEPX/d4yKrL6eA==", "published"=>"false", "tour_id"=>"6"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'http://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrbhttp://localhost:9292/intro/admin/tours/new?brabrb=brabrb' AND "intro_tours"."id" != 6) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "f"], ["updated_at", "2019-08-04 06:48:24.197480"], ["id", 6]]  (8.5ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/6/edit Completed 302 Found in 21ms (ActiveRecord: 9.1ms) Started GET "/intro/admin/tours/6/edit" for ::1 at 2019-08-04 14:48:24 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.4ms) Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 14:48:27 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (8.4ms) Completed 200 OK in 35ms (Views: 32.9ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 15:11:33 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.8ms) Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 15:11:35 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (7.0ms) Completed 200 OK in 31ms (Views: 28.8ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 15:11:39 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.6ms) Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 20:17:15 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.2ms) Completed 200 OK in 41ms (Views: 31.9ms | ActiveRecord: 0.7ms) Started GET "/rails/info/routess" for ::1 at 2019-08-04 20:17:22 +0800 ActionController::RoutingError (No route matches [GET] "/rails/info/routess"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.8ms) Started GET "/rails/info/routes" for ::1 at 2019-08-04 20:17:26 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (6.8ms) Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 21:54:49 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 51ms (Views: 42.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 21:56:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (19.5ms) Completed 200 OK in 40ms (Views: 38.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 21:56:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.7ms) Completed 200 OK in 40ms (Views: 38.9ms | ActiveRecord: 0.0ms) Started GET "/rails/info/routes" for ::1 at 2019-08-04 22:05:24 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (5.8ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:08:22 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.8ms) Completed 200 OK in 39ms (Views: 36.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:08:31 +0800 Processing by Intro::Admin::ToursController#route as */* Completed 200 OK in 24ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:11:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.4ms) Completed 200 OK in 35ms (Views: 33.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:11:26 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:39:37 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.9ms) Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:40:04 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.9ms) Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:40:08 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:40:15 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.7ms) Completed 200 OK in 36ms (Views: 34.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:40:18 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:42:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (14.2ms) Completed 200 OK in 43ms (Views: 42.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:42:57 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:43:05 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:43:21 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:43:26 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:43:32 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (15.0ms) Completed 200 OK in 37ms (Views: 35.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:43:34 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:45:29 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.5ms) Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:45:32 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:46:13 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (10.9ms) Completed 200 OK in 40ms (Views: 31.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route" for ::1 at 2019-08-04 22:46:17 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"tour"=>{}} Completed 200 OK in 13463ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:52:30 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (16.2ms) Completed 200 OK in 37ms (Views: 36.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http://localhost:9292/intro/admin/tours/new?brabrb=brabrb" for ::1 at 2019-08-04 22:52:32 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "tour"=>{}} Completed 200 OK in 5421ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr" for ::1 at 2019-08-04 22:52:59 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "brabr"=>"brabr", "tour"=>{}} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/route?path=http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr" for ::1 at 2019-08-04 22:53:17 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "brabr"=>"brabr", "tour"=>{}} Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:53:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.4ms) Completed 200 OK in 44ms (Views: 36.4ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew%3Fbrabrb%3Dbrabrb%26brabr%3Dbrabr" for ::1 at 2019-08-04 22:53:53 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "tour"=>{}} Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-04 22:54:02 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"tCVxlibxAFFNfSyA7mYG+ZUQ+p2CWSOT9fCo2umKxZKClbcAJFjBDIbTbCvoUZiP8HmiqDoRcxV0mWd3LKnQiw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/tours#new-b8ee98' LIMIT 1 SQL (0.4ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/tours\n action: new\nquery: brabrb=brabrb&brabr=brabr\nsimple: http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr\nstrict: false\n"], ["ident", "intro/admin/tours#new-b8ee98"], ["controller_path", "intro/admin/tours"], ["action_name", "new"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-04 14:54:02.603943"], ["updated_at", "2019-08-04 14:54:02.603943"]]  (6.2ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/8 Completed 302 Found in 28ms (ActiveRecord: 7.1ms) Started GET "/intro/admin/tours/8" for ::1 at 2019-08-04 22:54:02 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.8ms) Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.2ms) ActionView::Template::Error (undefined method `admin_tour_publish_path' for #<#:0x007fbad1d30b60>): 10: <%= link_to t('intro.admin.delete_tour'), admin_tour_path(@tour), method: :delete, data: { confirm: t('intro.admin.tips.delete_tour_confirm') } %> 11: <% end %> 12: <% content_for :form_actions do %> 13: <%= link_to (@tour.published? ? t('intro.admin.unpublish') : t('intro.admin.publish')), admin_tour_publish_path(@tour, published: !@tour.published), method: :put, class: 'intro-admin__button' %> 14: <% end %> 15: 16: <%= render layout: 'intro/admin/tours/container' do %> /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:13:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___3911727829194735011_70220189813380' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:152:in `content_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:12:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___3911727829194735011_70220189813380' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:40:in `show' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.5ms) Started GET "/rails/info/routes" for ::1 at 2019-08-04 22:54:20 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (9.0ms) Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms) Started GET "/rails/info/routes" for ::1 at 2019-08-04 22:54:40 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (7.1ms) Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-04 22:54:44 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (12.8ms) Completed 200 OK in 42ms (Views: 40.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 22:54:49 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (36.3ms) Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.4ms) ActionView::Template::Error (undefined method `admin_tour_publish_path' for #<#:0x007fbad0b3e8f8>): 15:
16: 17:
18: <%= yield %> 19:
20:
21:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:35:in `block (2 levels) in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:46:in `each' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:26:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__3225344962547696636_46941028414580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:8:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (24.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 22:54:51 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (18.3ms) Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.2ms) ActionView::Template::Error (undefined method `admin_tour_publish_path' for #<#:0x007fbad39c8d90>): 15:
16: 17:
18: <%= yield %> 19:
20:
21:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:35:in `block (2 levels) in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:46:in `each' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:26:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__3225344962547696636_46941028414580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:8:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 22:54:53 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.3ms) Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.3ms) ActionView::Template::Error (undefined method `admin_tour_publish_path' for #<#:0x007fbac8a6b2a8>): 15: 16: 17:
18: <%= yield %> 19:
20: 21: /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:35:in `block (2 levels) in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:46:in `each' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:26:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__3225344962547696636_46941028414580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:8:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 22:54:59 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (20.7ms) Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.4ms) ActionView::Template::Error (undefined method `admin_tour_publish_path' for #<#:0x007fbad2eea8b0>): 15: 16: 17:
18: <%= yield %> 19:
20: 21: /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:35:in `block (2 levels) in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.11.1) lib/active_record/relation/delegation.rb:46:in `each' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:26:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__3225344962547696636_46941028414580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:8:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__2047722683734204746_70220186676720' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 22:56:00 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 22:56:55 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.3ms) Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.3ms) Started PUT "/intro/admin/tours/8/publish?published=true" for ::1 at 2019-08-04 22:57:01 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"ZkpJhFMh+HASc/QgAeMIMvQ3wWMLKF9cq2MdRNh8qnhQ+o8SUYg5LdndtIsH1JZEkV6ZVrNgD9oqCtLpHV+/YQ==", "published"=>"true", "id"=>"8"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#new-b8ee98' AND "intro_tours"."id" != 8) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-04 14:57:01.968514"], ["id", 8]]  (7.1ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 23ms (ActiveRecord: 8.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 22:57:01 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (4.4ms) Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms) Started PUT "/intro/admin/tours/8/publish?published=false" for ::1 at 2019-08-04 22:57:02 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"eS2m/s09pfTrJDe1CMCs2DXn3gYIh+uKPpgUQINu2YNPnWBoz5RkqSCKdx4O9zKuUI6GM7DPuwy/8dvtRk3Mmg==", "published"=>"false", "id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#new-b8ee98' AND "intro_tours"."id" != 8) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "f"], ["updated_at", "2019-08-04 14:57:02.943505"], ["id", 8]]  (7.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 19ms (ActiveRecord: 8.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-04 22:57:02 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (5.8ms) Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-04 22:57:03 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.7ms) Completed 200 OK in 61ms (Views: 57.7ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 09:54:48 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.2ms) Completed 500 Internal Server Error in 40ms (ActiveRecord: 0.3ms) ActionView::Template::Error (undefined method `current_user' for #<#:0x007f974cabf140>): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
/home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:18:in `public_send' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:18:in `enable_intro?' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:8:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3427790187084216282_70143903149540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__342062751517437812_70143901743340' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.2ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-08-05 02:01:42.392395"], ["updated_at", "2019-08-05 02:01:42.392395"]]  (6.5ms) commit transaction Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:02:23 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.9ms) Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.4ms) ActionView::Template::Error (undefined method `current_user' for #<#:0x0055ae042c6778>): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
/home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:18:in `public_send' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:18:in `enable_intro?' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:8:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3427790187084216282_70143903149540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__342062751517437812_70143901743340' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:02:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (20.2ms) Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `current_user' for #<#:0x0055ae0575f658>): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
/home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:18:in `public_send' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:18:in `enable_intro?' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:8:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3427790187084216282_70143903149540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__342062751517437812_70143901743340' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:14:58 +0800 ActionController::RoutingError (undefined method `current_user' for class `Intro::ApplicationController'): /home/jinhu/Repos/intro/app/controllers/intro/application_controller.rb:7:in `alias_method' /home/jinhu/Repos/intro/app/controllers/intro/application_controller.rb:7:in `' /home/jinhu/Repos/intro/app/controllers/intro/application_controller.rb:2:in `' /home/jinhu/Repos/intro/app/controllers/intro/application_controller.rb:1:in `' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.11.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:3:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:2:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/application_controller.rb:1:in `' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.11.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:3:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:2:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:1:in `' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.11.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.11.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.11.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (27.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:15:18 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (222.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (223.7ms) Completed 500 Internal Server Error in 236ms (ActiveRecord: 0.9ms) ActionView::Template::Error (couldn't find file 'shepherd.min' with type 'application/javascript' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets /home/jinhu/.rvm/gems/ruby-2.1.9/gems/rails-ujs-0.1.0/dist): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
/home/jinhu/Repos/intro/app/assets/javascripts/intro/application.js:13 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:12:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3427790187084216282_70143903149540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__342062751517437812_70143901743340' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:15:38 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (9.3ms) Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.8ms) ActionView::Template::Error (couldn't find file 'shepherd.min' with type 'application/javascript' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets /home/jinhu/.rvm/gems/ruby-2.1.9/gems/rails-ujs-0.1.0/dist): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
/home/jinhu/Repos/intro/app/assets/javascripts/intro/application.js:13 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:12:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3427790187084216282_70143903149540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__342062751517437812_70143901743340' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:16:58 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (13.2ms) Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.3ms) ActionView::Template::Error (couldn't find file 'shepherd.min.js' with type 'application/javascript' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets /home/jinhu/.rvm/gems/ruby-2.1.9/gems/rails-ujs-0.1.0/dist): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
/home/jinhu/Repos/intro/app/assets/javascripts/intro/application.js:13 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:12:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3427790187084216282_70143903149540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__342062751517437812_70143901743340' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:17:41 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (8.5ms) Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.2ms) ActionView::Template::Error (couldn't find file 'shepherd.min' with type 'application/javascript' Checked in these paths: /home/jinhu/Repos/intro/spec/dummy/app/assets/images /home/jinhu/Repos/intro/spec/dummy/app/assets/javascripts /home/jinhu/Repos/intro/spec/dummy/app/assets/stylesheets /home/jinhu/Repos/intro/app/assets/images /home/jinhu/Repos/intro/app/assets/javascripts /home/jinhu/Repos/intro/app/assets/stylesheets /home/jinhu/.rvm/gems/ruby-2.1.9/gems/rails-ujs-0.1.0/dist): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
/home/jinhu/Repos/intro/app/assets/javascripts/intro/application.js:13 sprockets (3.7.2) lib/sprockets/resolve.rb:65:in `resolve!' sprockets (3.7.2) lib/sprockets/directive_processor.rb:399:in `resolve' sprockets (3.7.2) lib/sprockets/directive_processor.rb:207:in `process_require_directive' sprockets (3.7.2) lib/sprockets/directive_processor.rb:180:in `block in process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `each' sprockets (3.7.2) lib/sprockets/directive_processor.rb:178:in `process_directives' sprockets (3.7.2) lib/sprockets/directive_processor.rb:83:in `_call' sprockets (3.7.2) lib/sprockets/directive_processor.rb:68:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/bundle.rb:23:in `block in call' sprockets (3.7.2) lib/sprockets/utils.rb:200:in `dfs' sprockets (3.7.2) lib/sprockets/bundle.rb:24:in `call' sprockets (3.7.2) lib/sprockets/processor_utils.rb:75:in `call_processor' sprockets (3.7.2) lib/sprockets/processor_utils.rb:57:in `block in call_processors' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `reverse_each' sprockets (3.7.2) lib/sprockets/processor_utils.rb:56:in `call_processors' sprockets (3.7.2) lib/sprockets/loader.rb:134:in `load_from_unloaded' sprockets (3.7.2) lib/sprockets/loader.rb:60:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:92:in `[]' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:355:in `find_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:347:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:12:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3427790187084216282_70143903149540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__342062751517437812_70143901743340' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:17:53 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (529.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (537.4ms) Completed 200 OK in 570ms (Views: 555.4ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/_mixins.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-05 10:17:54 +0800 Started GET "/assets/intro/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-05 10:17:54 +0800 Started GET "/assets/intro/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for ::1 at 2019-08-05 10:17:54 +0800 Started GET "/assets/shepherd.min.self-b7e96c1e700fce594b6cc5c7378769818792f81b87ab0d7d8168ef81cd24c759.js?body=1" for ::1 at 2019-08-05 10:17:54 +0800 Started GET "/assets/intro/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2019-08-05 10:17:54 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:17:56 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:22:01 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (73.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (74.5ms) Completed 200 OK in 95ms (Views: 88.0ms | ActiveRecord: 0.7ms) Started GET "/assets/intro/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-05 10:22:01 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:22:02 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:22:39 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (11.0ms) Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.9ms) ActionView::Template::Error (undefined method `gsub' for #): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
actionview (4.2.11.1) lib/action_view/helpers/javascript_helper.rb:27:in `escape_javascript' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:11:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___126659045874326757_69841040505380' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__2068550685405871888_69841039058220' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:22:56 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.9ms) Completed 200 OK in 69ms (Views: 58.5ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:22:56 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:23:08 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.0ms) Completed 200 OK in 63ms (Views: 53.4ms | ActiveRecord: 1.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:23:08 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:24:03 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.0ms) Completed 200 OK in 57ms (Views: 48.0ms | ActiveRecord: 0.9ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:24:03 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:39:05 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (52.0ms) Completed 200 OK in 73ms (Views: 64.2ms | ActiveRecord: 1.1ms) Started GET "/assets/intro/application.self-9ff8398a9daeabb4ddc9e59bda1b9bd43b7b43c56982cbc7cff47f54051fde2f.js?body=1" for ::1 at 2019-08-05 10:39:05 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:39:06 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:39:15 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (60.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (63.6ms) Completed 200 OK in 88ms (Views: 85.6ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-02076505d715c60c4fe7d394debb13ef2756690e0415b4ffb8a176cd2bb0ced6.js?body=1" for ::1 at 2019-08-05 10:39:15 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:39:16 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:39:47 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (55.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (58.6ms) Completed 200 OK in 75ms (Views: 73.5ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/application.self-50af006efd1439774895d3b82112f95327a2dc66b7a5290cba043e6a8681e1a5.js?body=1" for ::1 at 2019-08-05 10:39:47 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:39:47 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:40:26 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.0ms) Completed 200 OK in 64ms (Views: 54.3ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:40:26 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:40:45 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (51.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (52.7ms) Completed 200 OK in 64ms (Views: 62.9ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-c7d1e9816cd3108ebc86aa58b4509dbf6854406ff4f31e4a3abbca2897b52b67.js?body=1" for ::1 at 2019-08-05 10:40:45 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:40:45 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:41:01 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.7ms) Completed 200 OK in 58ms (Views: 56.6ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/application.self-5ccd6a468c9fd1be3fdbc8adcc52fd81000031202ef25ae77f92e75f84977863.js?body=1" for ::1 at 2019-08-05 10:41:01 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:41:01 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:41:07 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (33.8ms) Completed 200 OK in 44ms (Views: 42.5ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:41:07 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:55:08 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.8ms) Completed 200 OK in 60ms (Views: 59.0ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-75076fa3beda5374338c0f74ea656e687c666dd3f5f5bc9e25a2b1bdf633e344.js?body=1" for ::1 at 2019-08-05 10:55:09 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:55:09 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:55:40 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.2ms) Completed 200 OK in 55ms (Views: 53.9ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-4c9d53f61592500737b9ccd8bd37ed17ef3e34a2a205f8db85cc1df67c66fa79.js?body=1" for ::1 at 2019-08-05 10:55:40 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:55:40 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:55:52 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (46.9ms) Completed 200 OK in 63ms (Views: 61.4ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/application.self-060e08a60f37d70b378dfcce4ab927cba183a8f764878f6fca079863989e13b6.js?body=1" for ::1 at 2019-08-05 10:55:52 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:55:52 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:56:02 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (55.4ms) Completed 200 OK in 70ms (Views: 67.9ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-3f7baac3d3954d409f0d1323da73fde3fbfa50e82869d3d8c6e5cd0a30f6111e.js?body=1" for ::1 at 2019-08-05 10:56:02 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:56:02 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 10:59:57 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (43.0ms) Completed 200 OK in 64ms (Views: 54.4ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 10:59:57 +0800 Started GET "/rails/info/routes" for ::1 at 2019-08-05 13:58:06 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (9.8ms) Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) Started GET "/rails/info/routes" for ::1 at 2019-08-05 13:59:57 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (4.6ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:04:56 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (54.3ms) Completed 200 OK in 77ms (Views: 67.3ms | ActiveRecord: 0.8ms) Started GET "/assets/intro/application.self-010b75316ecefb92e0e9c4b11be858c968bc6a59be0693d92f55ac4232bcbed7.js?body=1" for ::1 at 2019-08-05 14:04:56 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:04:57 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:05:02 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (6.8ms) Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.9ms) ActionView::Template::Error (undefined method `gsub' for #): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tags %> 3: 4:
5:
actionview (4.2.11.1) lib/action_view/helpers/javascript_helper.rb:27:in `escape_javascript' /home/jinhu/Repos/intro/app/helpers/intro/application_helper.rb:21:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___126659045874326757_69841053316180' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb__2068550685405871888_69841039058220' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:05:18 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (46.0ms) Completed 200 OK in 68ms (Views: 59.4ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:05:19 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:05:25 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.7ms) Completed 200 OK in 60ms (Views: 50.8ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:05:25 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:07:58 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.4ms) Completed 200 OK in 57ms (Views: 47.9ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:07:58 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:09:24 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.1ms) Completed 200 OK in 75ms (Views: 65.7ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:09:24 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:23:05 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.3ms) Completed 200 OK in 61ms (Views: 53.3ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:23:05 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:24:14 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.6ms) Completed 200 OK in 59ms (Views: 49.9ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:24:15 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:28:06 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.8ms) Completed 200 OK in 58ms (Views: 49.1ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:28:06 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:32:19 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (43.5ms) Completed 200 OK in 75ms (Views: 58.7ms | ActiveRecord: 1.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:32:19 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:32:59 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.2ms) Completed 200 OK in 60ms (Views: 51.8ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:32:59 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:35:25 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.5ms) Completed 200 OK in 56ms (Views: 48.1ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:35:26 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:52:47 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (49.1ms) Completed 200 OK in 71ms (Views: 61.5ms | ActiveRecord: 1.0ms) Started GET "/assets/intro/application.self-b847ce01296966cb926609fdc7588732f8eb8a939309fabe36ee8b7dfd1e5f28.js?body=1" for ::1 at 2019-08-05 14:52:47 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:52:47 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 14:54:28 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.4ms) Completed 200 OK in 62ms (Views: 59.5ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-8a3875b774592a54640e6fc68a204074693f0834527d0dee3bb8338b1046cf2c.js?body=1" for ::1 at 2019-08-05 14:54:28 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 14:54:28 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:02:39 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (57.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (58.4ms) Completed 200 OK in 82ms (Views: 71.8ms | ActiveRecord: 0.8ms) Started GET "/assets/intro/application.self-f39a1f02649bf3cdf678eb93b303a3bad21183b26c0c48ae666024e9ca4f073d.js?body=1" for ::1 at 2019-08-05 16:02:39 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:02:39 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:02:59 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (61.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (62.8ms) Completed 200 OK in 76ms (Views: 74.9ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-7ed15964e084d6f3d536502787d2c7255af56b841f3e3b1987386382bddf0a41.js?body=1" for ::1 at 2019-08-05 16:02:59 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:03:00 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:03:10 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (38.7ms) Completed 200 OK in 53ms (Views: 51.9ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:03:11 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:03:44 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (59.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (61.8ms) Completed 200 OK in 80ms (Views: 79.1ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-8bb9089ac67c4ba090fa0d6a147cd6d1274a87871eed99c482055ec160e07696.js?body=1" for ::1 at 2019-08-05 16:03:44 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:03:44 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:03:47 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (32.8ms) Completed 200 OK in 46ms (Views: 44.5ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:03:47 +0800 Started GET "/intro/admin/tours/undefined?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:03:47 +0800 Processing by Intro::Admin::ToursController#show as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new", "id"=>"undefined"} Intro::Tour Load (8.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:9292/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 17ms (ActiveRecord: 8.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:04:28 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (63.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (64.6ms) Completed 200 OK in 79ms (Views: 78.2ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-e445751d0f8a843a2389405afd556aa2feeb9664822a4729ed4fbb236a68e233.js?body=1" for ::1 at 2019-08-05 16:04:28 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:04:28 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:04:39 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.0ms) Completed 200 OK in 59ms (Views: 58.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:04:40 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:04:41 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.1ms) Completed 200 OK in 55ms (Views: 52.6ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:04:41 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:04:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (2.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 2.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:04:42 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (28.5ms) Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:04:42 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:04:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:04:43 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.4ms) Completed 200 OK in 59ms (Views: 56.7ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:04:44 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:04:45 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.2ms) Completed 200 OK in 59ms (Views: 57.1ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:04:46 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:04:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:04:46 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (32.0ms) Completed 200 OK in 45ms (Views: 44.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:04:46 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:05:02 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (38.3ms) Completed 200 OK in 62ms (Views: 51.6ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:05:02 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:05:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:05:08 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.8ms) Completed 200 OK in 62ms (Views: 51.6ms | ActiveRecord: 1.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:05:08 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:05:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:05:09 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (49.0ms) Completed 200 OK in 61ms (Views: 60.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:05:09 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:05:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms) Started GET "/rails/info/routes" for ::1 at 2019-08-05 16:15:44 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (7.5ms) Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:19:05 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:19:06 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (54.2ms) Completed 200 OK in 70ms (Views: 68.6ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/application.self-17fcc9747dc579ab07f631a9bd128bd99dfb6e99ce1e8137aa092d80278a507c.js?body=1" for ::1 at 2019-08-05 16:19:06 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:19:06 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:19:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"znJL7jmoL3wK5C7qaXevH2J6Qjmq96rRT1DrJ/heQ/f4wo14OwHuIcFKbkFvQDFpBxMaDBK/+lfOOSSKPX1W7g==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"brabr", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:19:32 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.0ms) Completed 200 OK in 49ms (Views: 48.5ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:19:33 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:19:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"dnodb5hGk8dOmkVc6mOC+SM437lBE+5Xe0IwcdrNwoJAytv5mu9SmoU0BffsVByPRlGHjPlbvtH6K//cH+7Xmw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"brab", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:20:18 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (48.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (50.8ms) Completed 200 OK in 63ms (Views: 62.4ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/application.self-d8a50fbe9fdf24c142bd9d34d408ca612230b71c8baa39fbad86ee93aa745ca5.js?body=1" for ::1 at 2019-08-05 16:20:18 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:20:18 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:21:45 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (49.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (50.8ms) Completed 200 OK in 68ms (Views: 66.9ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:21:45 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:02 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (54.7ms) Completed 200 OK in 69ms (Views: 67.9ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/application.self-e7970d1428eeedadbe7c5144503911974581ae02b2f91ca8dd9d11b3026409c4.js?body=1" for ::1 at 2019-08-05 16:22:02 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:02 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:03 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.9ms) Completed 200 OK in 46ms (Views: 44.2ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:04 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:22:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:05 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (28.5ms) Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:05 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:05 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.5ms) Completed 200 OK in 74ms (Views: 72.4ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:06 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:06 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (27.5ms) Completed 200 OK in 38ms (Views: 37.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:07 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:07 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.5ms) Completed 200 OK in 52ms (Views: 50.6ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:22:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:08 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.2ms) Completed 200 OK in 48ms (Views: 47.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:08 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:17 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.9ms) Completed 200 OK in 73ms (Views: 64.7ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:18 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:22:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:19 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (41.3ms) Completed 200 OK in 56ms (Views: 54.3ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:19 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:22:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:22:20 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.1ms) Completed 200 OK in 60ms (Views: 57.8ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:22:20 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:22:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:24:47 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.8ms) Completed 200 OK in 52ms (Views: 50.6ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:24:48 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:24:48 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:24:50 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ihNe6GYoTSjHhgt03gSlGJpwRd9a/zmyn2tLswzjW7K8o5h+ZIGMdQwoS9/YMztu/xkd6uK3aTQeAoQeycBOqw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 16:25:32 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (53.7ms) Completed 200 OK in 78ms (Views: 76.6ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/application.self-421e8ad8f109afd75b911f2e72446980ee78a831ecf0149ba6475184a08ebee2.js?body=1" for ::1 at 2019-08-05 16:25:32 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:25:32 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 16:25:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:25:35 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"2eIvLjobKeIy192O+ET8/JRJ1ut53rOMQwsoPJL+Hh3vUum4OLLov/l5nSX+c2KK8SCO3sGW4wrCYueRV90LBA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"rbarbar", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 16:25:48 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (36.7ms) Completed 200 OK in 52ms (Views: 49.7ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 16:25:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:25:49 +0800 Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:25:53 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (45.8ms) Completed 200 OK in 66ms (Views: 61.7ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:25:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:25:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:25:59 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"jMlfN7UWfvpwXvURxW4fOf3ZVJ9lozPqjA66tH8TvbO6eZmht7+/p7vwtbrDWYFPmLAMqt3rY2wNZ3UZujCoqg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rbarbarbarbab", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:9292/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:27:52 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (45.5ms) Completed 200 OK in 59ms (Views: 57.5ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:27:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:27:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:27:54 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"jR6Ta905Jhke8M2nKjWiGAZt1zBiiizEQTYrwBoZlmO7rlX935DnRNVejQwsAjxuYwSPBdrCfELAX+Rt3zqDeg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:9292/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:28:57 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (52.4ms) Completed 200 OK in 79ms (Views: 77.1ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:28:58 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:28:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:29:01 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"B0WPfdE6FUhQ61ckMsAH8jW3qV9UXB5tHw7HulEEgokx9Unr05PUFZtFF48095mEUN7xauwUTuueZwgXlCeXkA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:9292/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:30:38 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (45.6ms) Completed 200 OK in 64ms (Views: 62.1ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:30:38 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:30:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:30:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"N+dup8lNuPxTdJI2wLPCxIOtDV/eqaUp0IR0INxB1l8BV6gxy+R5oZja0p3GhFyy5sRVambh9a9R7buNGWLDRg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"brba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:32:16 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (38.5ms) Completed 200 OK in 54ms (Views: 51.8ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:32:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:32:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:32:21 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (37.3ms) Completed 200 OK in 52ms (Views: 50.3ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:32:21 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:32:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:32:23 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IbQnxbu/BVWz2gH/TeKcMMm0eMnMTtM6XerMSpXpWHsXBOFTuRbECHh0QVRL1QJGrN0g/HQGg7zcgwPnUMpNYg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:33:17 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (48.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (49.7ms) Completed 200 OK in 64ms (Views: 62.7ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:33:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:33:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:33:19 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"/0RSSp5FtzmD8m+Ef84p6fJO11tQh7rp/xkTVqIljWTJ9JTcnOx2ZEhcLy95+beflyePbujP6m9+cNz7ZwaYfQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:35:16 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (54.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (57.3ms) Completed 200 OK in 74ms (Views: 71.2ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/application.self-ec3581204d91f7dc13c48fd6128abf5c8b02f5f3529260181e971843ce981dfa.js?body=1" for ::1 at 2019-08-05 16:35:16 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:35:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:35:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:35:20 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"rqzBZqfGMN1WaA1Oku2c+a1vWsAkAitDx0mVK8NpQVuYHAfwpW/xgJ3GTeWU2gKPyAYC9ZxKe8VGIFqGBkpUQg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"ntsnt", "content"=>"ntsntsntn", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:37:45 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (61.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (64.5ms) Completed 200 OK in 79ms (Views: 77.2ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-e889c621d37ee59cdaaad3c97fdb77e782ce89f044b29f1c8d842ec6ea801763.js?body=1" for ::1 at 2019-08-05 16:37:45 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:37:46 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:37:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:37:48 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ld8NvEaYUk2cw3Yr1LpkByVABHKzb+r2w4PCIeVOe1sbb8sqRDGTEFdtNoDSjfpxQClcRwsnunBC6g2MIG1uQg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"rbarbarb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:39:21 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (49.6ms) Completed 200 OK in 62ms (Views: 60.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/application.self-20fc1a0222a86a2691a2f8f0d757982d6ef7f6eba0b7f481b3aef35a9378bba3.js?body=1" for ::1 at 2019-08-05 16:39:21 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:39:21 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:39:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:39:22 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"o+ygqsL8kwCzSyLjmzLSNHZrmiP0gljuwWdesQR42ZKVXGY8wFVSXXjlYkidBUxCEwLCFkzKCGhADpEcwVvMiw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:42:07 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (36.7ms) Completed 200 OK in 55ms (Views: 52.0ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:42:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:42:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:42:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"tHFBncdD5C0Elj/nXdrhfe3wmCwnAKXba+Reby6FTZKCwYcLxeolcM84f0xb7X8LiJnAGZ9I9V3qjZHC66ZYiw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brbar", "content"=>"rabrbarbabb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:42:56 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (37.5ms) Completed 200 OK in 51ms (Views: 48.9ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:42:56 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:42:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.3ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:43:00 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vh74McqYbxcmTcVp8YaqOBq+sXst8cPgumgPKAYnH6dgrj6nyDGuSu3jhcL3sTROf9fpTpW5k2Y7AcCFwwQKvg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brbar", "content"=>"barbarba", "image_url"=>"", "image_placement"=>"top", "element"=>"brbarba", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:45:55 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (49.1ms) Completed 200 OK in 61ms (Views: 59.2ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/application.self-95e048dad1c279f5845eb09c1e0e92fa558e795341f8bf4e78db4dee34122104.js?body=1" for ::1 at 2019-08-05 16:45:56 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:45:56 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:45:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:45:58 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (45.8ms) Completed 200 OK in 61ms (Views: 59.2ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:45:59 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:45:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:46:03 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"8POIBEDgdikFu/0Lfhqw8GzmVi1TlyaCZt2KYb5GDw/GQ06SQkm3dM4VvaB4LS6GCY8OGOvfdgTntEXMe2UaFg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rbarbab", "image_url"=>"brbarb", "image_placement"=>"top", "element"=>"brabrb", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:46:17 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (33.3ms) Completed 200 OK in 48ms (Views: 46.0ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:46:18 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:46:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:46:23 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LILO1pi9+UtYOwQUDcuk7ydZY3ANF0MiaUYuR3GNp/saMghAmhQ4FpOVRL8L/DqZQjA7RbVfE6ToL+HqtK6y4g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"rbarabar", "image_url"=>"", "image_placement"=>"top", "element"=>"brabr", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:47:01 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (49.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (52.3ms) Completed 200 OK in 69ms (Views: 67.5ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-38ad0767eca77f4db102e2ddf88ab52cc5266771b0ac0a013d750a7f4e57ed4a.js?body=1" for ::1 at 2019-08-05 16:47:01 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:47:01 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:47:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:47:05 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uyX0wlutLjBq4xqHkBicnxg18NP/jRqWPMhLme7xkvCNlTJUWQTvbaFNWiyWLwLpfVyo5kfFShC9oYQ0K9KH6Q==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbrabr", "image_url"=>"", "image_placement"=>"top", "element"=>"brabrba", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:48:51 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (54.9ms) Completed 200 OK in 69ms (Views: 67.1ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/application.self-56757985f6214e25472d5a3d6646ec085da654b6b3305da0183dc180ea1ba612.js?body=1" for ::1 at 2019-08-05 16:48:51 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:48:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:48:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:48:57 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"MDgPT+Z85iaabCzIxJv/Nr6TDJQ0Z+VK//BmFGEzZ0oGiMnZ5NUne1HCbGPCrGFA2/pUoYwvtcx+mam5pBByUw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:49:27 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (45.6ms) Completed 200 OK in 60ms (Views: 58.3ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:49:27 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:49:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:49:30 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"xEfb96t7Id8KchmLWjQ/jTeJvJNjn/foLbAgvziONsDy9x1hqdLggsHcWSBcA6H7UuDkptvXp26s2e8S/a0j2Q==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:50:12 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (40.8ms) Completed 200 OK in 56ms (Views: 52.6ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:50:12 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:50:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.2ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:50:14 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"nWBX9Egu9RBOfx6ZEE0AAd+DM6orSb06jRhqbRgh1OSr0JFiSoc0TYXRXjIWep53uuprn5MB7bwMcaXA3QLB/Q==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:50:40 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (38.8ms) Completed 200 OK in 53ms (Views: 50.9ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:50:41 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:50:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:50:43 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"HmYenmWNnq4at47GcglDuVk30o88Cx3Ee9PjKAbXXtEo1tgIZyRf89EZzm10Pt3PPF6KuoRDTUL6uiyFw/RLyA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:51:31 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (55.4ms) Completed 200 OK in 70ms (Views: 68.1ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:51:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:51:31 +0800 Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:55:52 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (38.9ms) Completed 200 OK in 53ms (Views: 51.4ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:55:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:55:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:56:01 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7hyRrd3657TnqId2lFO1F9p4wl8pM1Wvly5QwKodMUTYrFc731Mm6SwGx92SZCthvxGaapF7BSkWR59tbz4kXQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"3brba", "content"=>"brabrbarbab", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 16:56:31 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (55.2ms) Completed 200 OK in 72ms (Views: 69.3ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/application.self-9ccbc90e313ee9020ffea3f070b73f428a249e00b7a6588a4674e0d18a7a0e55.js?body=1" for ::1 at 2019-08-05 16:56:31 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 16:56:32 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 16:56:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:56:35 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"j3u/OAKZgl9ttCMrKx+PffaHljaZPLOIdfJeEn7tGQG5y3muADBDAqYaY4AtKBELk+7OAyF04w70m5G/u84MGA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"babrabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:56:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"j3u/OAKZgl9ttCMrKx+PffaHljaZPLOIdfJeEn7tGQG5y3muADBDAqYaY4AtKBELk+7OAyF04w70m5G/u84MGA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"babrabrbbrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:56:48 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"j3u/OAKZgl9ttCMrKx+PffaHljaZPLOIdfJeEn7tGQG5y3muADBDAqYaY4AtKBELk+7OAyF04w70m5G/u84MGA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brabbrabrb", "content"=>"babrabrbbrbaabrbarbab", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:56:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"j3u/OAKZgl9ttCMrKx+PffaHljaZPLOIdfJeEn7tGQG5y3muADBDAqYaY4AtKBELk+7OAyF04w70m5G/u84MGA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brabbrabrb", "content"=>"babrabrbbrbaabrbarbab", "image_url"=>"", "image_placement"=>"top", "element"=>"brbarba", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:56:57 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"j3u/OAKZgl9ttCMrKx+PffaHljaZPLOIdfJeEn7tGQG5y3muADBDAqYaY4AtKBELk+7OAyF04w70m5G/u84MGA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brabbrabrb", "content"=>"babrabrbbrbaabrbarbab", "image_url"=>"", "image_placement"=>"top", "element"=>"brbarba", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 16:58:42 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"j3u/OAKZgl9ttCMrKx+PffaHljaZPLOIdfJeEn7tGQG5y3muADBDAqYaY4AtKBELk+7OAyF04w70m5G/u84MGA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brabbrabrb", "content"=>"babrabrbbrbaabrbarbab", "image_url"=>"", "image_placement"=>"top", "element"=>"brbarba", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brabrab", "content"=>"rbrabarbrbarba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/8/edit" for ::1 at 2019-08-05 20:10:03 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (55.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (57.2ms) Completed 200 OK in 71ms (Views: 69.4ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 20:10:03 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F8%2Fedit" for ::1 at 2019-08-05 20:10:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/8/edit"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 20:10:07 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"DwZ3KJGlk204sIUvzzNHco5WxN+BZ49J0HrXHcf15Pc5trG+kwxSMPMexYTJBNkE6z+c6jkv389RExiwAtbx7g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb&brabr=brabr", "query"=>"brabrb=brabrb&brabr=brabr"}, "ident"=>"intro/admin/tours#new-b8ee98", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"barbrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 20:10:12 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (31.4ms) Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 20:10:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 20:10:12 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 20:10:13 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.7ms) Completed 200 OK in 50ms (Views: 48.8ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 20:10:13 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 20:10:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 20:10:16 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"h7JDUfIxxA4bVD0rYtkNX4NV58K+WWY4rVTzQF5tCUSxAoXH8JgFU9D6fYBk7pMp5jy/9wYRNr4sPTztm04cXQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"rabrba", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 20:10:19 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.0ms) Completed 200 OK in 58ms (Views: 55.4ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 20:10:19 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 20:10:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 20:10:22 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"T+npQ5CCU4Gi5hT9Iwr9FfgJBZgHwWsVxnGCXB4quxF5WS/VkiuS3GlIVFYlPWNjnWBdrb+JO5NHGE3x2wmuCA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 21:07:38 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (51.4ms) Completed 200 OK in 82ms (Views: 71.7ms | ActiveRecord: 1.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 21:07:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:07:38 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 21:07:48 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"voCoWMrwE1KwdmedAo6uXSY/JsayUb1aSSBH5A3aCf6IMG7OyFnSD3vYJzYEuTArQ1Z+8woZ7dzISYhJyPkc5w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"ntnst", "content"=>"ntsntnst", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"ntsntn", "content"=>"nstnstnnstnsn", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 21:08:08 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"voCoWMrwE1KwdmedAo6uXSY/JsayUb1aSSBH5A3aCf6IMG7OyFnSD3vYJzYEuTArQ1Z+8woZ7dzISYhJyPkc5w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"ntnst", "content"=>"ntsntnstntnstsnt", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"ntsntn", "content"=>"nstnstnnstnsnntsntn", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 21:08:19 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"voCoWMrwE1KwdmedAo6uXSY/JsayUb1aSSBH5A3aCf6IMG7OyFnSD3vYJzYEuTArQ1Z+8woZ7dzISYhJyPkc5w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"ntnst", "content"=>"ntsntnstntnstsnt", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"ntsntn", "content"=>"nstnstnnstnsnntsntn", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"ntnstns", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 21:08:25 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"voCoWMrwE1KwdmedAo6uXSY/JsayUb1aSSBH5A3aCf6IMG7OyFnSD3vYJzYEuTArQ1Z+8woZ7dzISYhJyPkc5w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"ntnst", "content"=>"ntsntnstntnstsnt", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"ntsntn", "content"=>"nstnstnnstnsnntsntn", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_complete_text"=>"ntnstns", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 21:08:29 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"voCoWMrwE1KwdmedAo6uXSY/JsayUb1aSSBH5A3aCf6IMG7OyFnSD3vYJzYEuTArQ1Z+8woZ7dzISYhJyPkc5w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"ntnst", "content"=>"ntsntnstntnstsnt", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"ntsntn", "content"=>"nstnstnnstnsnntsntn", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"ntnstns", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."ident" = ? ORDER BY "intro_tours"."id" ASC LIMIT 1 [["ident", "fh"]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'fh' LIMIT 1 SQL (1.3ms) INSERT INTO "intro_tours" ("route", "ident", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["route", "---\n:strict: false\n"], ["ident", "fh"], ["created_at", "2019-08-05 13:22:23.258112"], ["updated_at", "2019-08-05 13:22:23.258112"]]  (4.9ms) commit transaction Intro::TourHistory Load (0.8ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = ? AND "intro_tour_histories"."tour_id" = 9 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1 [["user_id", 1]]  (0.2ms) begin transaction SQL (0.7ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 9], ["touch_count", 1], ["created_at", "2019-08-05 13:28:16.351161"], ["updated_at", "2019-08-05 13:28:16.351161"]]  (7.7ms) commit transaction Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 21:46:23 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (49.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (51.0ms) Completed 200 OK in 82ms (Views: 70.2ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:46:24 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 21:46:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 39ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 21:46:39 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IoSEHFKVNzADErT7vArD7PQhV04XO38CXc1nWObTHR8UNEKKUDz2bci89FC6PV2akUgPe69zL4TcpKj1I/AIBg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 21:46:43 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IoSEHFKVNzADErT7vArD7PQhV04XO38CXc1nWObTHR8UNEKKUDz2bci89FC6PV2akUgPe69zL4TcpKj1I/AIBg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-05 21:46:48 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IoSEHFKVNzADErT7vArD7PQhV04XO38CXc1nWObTHR8UNEKKUDz2bci89FC6PV2akUgPe69zL4TcpKj1I/AIBg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:49:43 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (45.4ms) Completed 200 OK in 64ms (Views: 59.1ms | ActiveRecord: 1.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:49:44 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:49:44 +0800 Started DELETE "/intro/admin/tours/9" for ::1 at 2019-08-05 21:49:47 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"GbYcaBs5BOhs009udhbjOxUvNyxkqbe/xrunlVedyssvBtr+GZDFtad9D8VwIX1NcEZvGdzh5zlH0mg4kr7f0g==", "id"=>"9"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 9]]  (0.1ms) begin transaction Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 9]] SQL (0.3ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 1]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 9]]  (7.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 34ms (ActiveRecord: 8.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:49:47 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (39.8ms) Completed 200 OK in 58ms (Views: 55.9ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:49:47 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:49:47 +0800 Started DELETE "/intro/admin/tours/8" for ::1 at 2019-08-05 21:49:49 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"RTZuSqafGsMqMaAM8ZU+BFPvEz2OYHM5geVVDZtXzAxzhqjcpDbbnuGf4Kf3oqByNoZLCDYoI78AjJqgXnTZFQ==", "id"=>"8"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 8]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 8]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 8]]  (4.3ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 9ms (ActiveRecord: 4.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:49:49 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (59.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (60.9ms) Completed 200 OK in 79ms (Views: 77.2ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:49:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:49:49 +0800 Started DELETE "/intro/admin/tours/6" for ::1 at 2019-08-05 21:49:53 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"Uo4ghfHSlxztcF7QfY6Fnv9tgLgiumvjOyf2/H3NJQpkPuYT83tWQSbeHnt7uRvomgTYjZryO2W6TjlRuO4wEw==", "id"=>"6"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 6]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 6]]  (5.7ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 10ms (ActiveRecord: 6.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:49:53 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (28.6ms) Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:49:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:49:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 21:49:54 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (44.5ms) Completed 200 OK in 63ms (Views: 60.5ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:49:54 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 21:49:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 1.1ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:50:12 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours", "tour"=>{}} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-05 21:50:33 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GXEOwzqVXyd6MljltaldDayQkfpMAbHyYcA/6h9qRuEvwchVODyeerGcGE6znsN7yfnJz/RJ4XTgqfBH2klT+A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours", "query"=>""}, "ident"=>"intro/admin/tours#index-ix87kq", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brabrba", "image_url"=>"", "image_placement"=>"top", "element"=>".intro-admin__box-actions", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/tours#index-ix87kq' LIMIT 1 SQL (0.6ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/tours\n action: index\nquery: ''\nsimple: http://localhost:9292/intro/admin/tours\nstrict: false\n"], ["ident", "intro/admin/tours#index-ix87kq"], ["controller_path", "intro/admin/tours"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: brabrba\n image_url: ''\n image_placement: top\n element: \".intro-admin__box-actions\"\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-05 13:50:33.130247"], ["updated_at", "2019-08-05 13:50:33.130247"]]  (5.2ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/10 Completed 302 Found in 28ms (ActiveRecord: 6.0ms) Started GET "/intro/admin/tours/10" for ::1 at 2019-08-05 21:50:33 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"10"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 10]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (37.7ms) Completed 200 OK in 66ms (Views: 64.3ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F10" for ::1 at 2019-08-05 21:50:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/10"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:50:33 +0800 Started PUT "/intro/admin/tours/10/publish?published=true" for ::1 at 2019-08-05 21:50:36 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"fG+50rlYanwgU6kSjKD676ddLA4dcZrxeMrSKT7VKdpK339Eu/GrIev96bmKl2SZwjR0O6U5ynf5ox2E+/Y8ww==", "published"=>"true", "id"=>"10"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 10]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-ix87kq' AND "intro_tours"."id" != 10) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-05 13:50:36.955528"], ["id", 10]]  (7.1ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/10 Completed 302 Found in 22ms (ActiveRecord: 7.9ms) Started GET "/intro/admin/tours/10" for ::1 at 2019-08-05 21:50:36 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"10"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 10]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (52.9ms) Completed 200 OK in 71ms (Views: 68.3ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:50:37 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F10" for ::1 at 2019-08-05 21:50:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/10"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 1.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:50:38 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (31.6ms) Completed 200 OK in 50ms (Views: 47.4ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:50:38 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:50:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.8ms | ActiveRecord: 0.8ms) Started POST "/intro/tours/record" for ::1 at 2019-08-05 21:50:42 +0800 Processing by Intro::ToursController#record as */* Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:50:45 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (34.6ms) Completed 200 OK in 50ms (Views: 47.6ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:50:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:50:45 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-05 21:50:55 +0800 Processing by Intro::ToursController#record as */* Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:58:00 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (57.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (58.6ms) Completed 200 OK in 75ms (Views: 72.7ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-b449cb68757f526c032c3629b9219e7728a7884da1ae4ecd0034215114856105.js?body=1" for ::1 at 2019-08-05 21:58:01 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:58:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:58:01 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-05 21:58:02 +0800 Processing by Intro::ToursController#record as */* Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:58:30 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (33.3ms) Completed 200 OK in 50ms (Views: 47.0ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:58:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:58:30 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-05 21:58:34 +0800 Processing by Intro::ToursController#record as */* Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:58:39 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (34.6ms) Completed 200 OK in 51ms (Views: 48.3ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:58:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:58:39 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-05 21:58:40 +0800 Processing by Intro::ToursController#record as */* Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 21:59:06 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (44.6ms) Completed 200 OK in 60ms (Views: 57.9ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-ae527ff9f28f5be4f8d7fdc8699bf35e9013b29a7c18e42286f483c1895315be.js?body=1" for ::1 at 2019-08-05 21:59:06 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 21:59:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 21:59:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started POST "/intro/tours/record" for ::1 at 2019-08-05 21:59:08 +0800 Processing by Intro::ToursController#record as */* Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:01:53 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (48.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (50.1ms) Completed 200 OK in 66ms (Views: 64.6ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-3b7042b5acdda09c3db800b1221fbf7bdc5b174b58dc55ba49fc753aad2d2f0b.js?body=1" for ::1 at 2019-08-05 22:01:53 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:01:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:01:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:02:54 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (46.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (49.3ms) Completed 200 OK in 65ms (Views: 62.3ms | ActiveRecord: 0.7ms) Started GET "/assets/intro/application.self-24d682e58132f61fc9fdc8ee2dc547798d52b19154ca190405736d1efb6bef7e.js?body=1" for ::1 at 2019-08-05 22:02:54 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:02:54 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:02:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started POST "/intro/tours/record" for ::1 at 2019-08-05 22:02:55 +0800 Processing by Intro::ToursController#record as */* User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:04:23 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (70.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (72.5ms) Completed 200 OK in 90ms (Views: 84.6ms | ActiveRecord: 1.4ms) Started GET "/assets/intro/application.self-a0fd69025d6bc30d5b5b3515b1355e3ef57b740a7bfc271a8eb03e714f6e6067.js?body=1" for ::1 at 2019-08-05 22:04:23 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:04:24 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:04:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.5ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 25ms (Views: 0.6ms | ActiveRecord: 1.7ms) Started POST "/intro/tours/record" for ::1 at 2019-08-05 22:04:25 +0800 Processing by Intro::ToursController#record as */* User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Filter chain halted as :require_tour rendered or redirected Completed 404 Not Found in 2ms (ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:05:09 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (55.6ms) Completed 200 OK in 72ms (Views: 70.3ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/application.self-969a57cd2d6d5798637a683ef747f21ce03d6e61bdef1dcd01908ee9c441db91.js?body=1" for ::1 at 2019-08-05 22:05:09 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:05:09 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:05:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:07:03 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (52.1ms) Completed 200 OK in 69ms (Views: 66.8ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/application.self-3dd8fe68e1a04fb0735b86d136ee07983676fc44d7fd91abf9721de010186c0a.js?body=1" for ::1 at 2019-08-05 22:07:03 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:07:03 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:07:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 17ms (Views: 0.8ms | ActiveRecord: 0.9ms) Started POST "/intro/tours/record" for ::1 at 2019-08-05 22:07:04 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>10, "tour"=>{"id"=>10}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 10]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (1.2ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 10], ["touch_count", 1], ["created_at", "2019-08-05 14:07:04.476890"], ["updated_at", "2019-08-05 14:07:04.476890"]]  (12.1ms) commit transaction Completed 500 Internal Server Error in 25ms (ActiveRecord: 14.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:07:27 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (106.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (111.6ms) Completed 200 OK in 131ms (Views: 128.8ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:07:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 10 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:07:28 +0800 Started GET "/intro/admin/tours/10/edit" for ::1 at 2019-08-05 22:07:51 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"10"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 10]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (47.7ms) Completed 200 OK in 66ms (Views: 61.9ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:07:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F10%2Fedit" for ::1 at 2019-08-05 22:07:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/10/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started DELETE "/intro/admin/tours/10" for ::1 at 2019-08-05 22:07:58 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"pcnVCMbGHv2qyZqJg04XIxfWFIwt5XrHODRhbCj+rkWTeROexG/foGFn2iKFeYlVcr9MuZWtKkG5Xa7B7d27XA==", "id"=>"10"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) begin transaction Intro::TourHistory Load (0.3ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 10]] SQL (0.3ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 2]] SQL (2.1ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 10]]  (6.0ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 18ms (ActiveRecord: 8.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:07:58 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (31.2ms) Completed 200 OK in 48ms (Views: 45.9ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:07:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:07:58 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 22:07:59 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (44.1ms) Completed 200 OK in 67ms (Views: 64.8ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:07:59 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 22:07:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.9ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 1.3ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:08:00 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours", "tour"=>{}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-05 22:08:03 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"uN49EQHaBnNI3vmUv4Tw6TD3hdmU0J+5s56eSbWRgsuObvuHA3PHLoNwuT+5s26fVZ7d7CyYzz8y91HkcLKX0g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours", "query"=>""}, "ident"=>"intro/admin/tours#index-ch9lo5", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brbarb", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/tours#index-ch9lo5' LIMIT 1 SQL (0.4ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/tours\n action: index\nquery: ''\nsimple: http://localhost:9292/intro/admin/tours\nstrict: false\n"], ["ident", "intro/admin/tours#index-ch9lo5"], ["controller_path", "intro/admin/tours"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: brbarb\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-05 14:08:03.868725"], ["updated_at", "2019-08-05 14:08:03.868725"]]  (7.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/11 Completed 302 Found in 34ms (ActiveRecord: 8.2ms) Started GET "/intro/admin/tours/11" for ::1 at 2019-08-05 22:08:03 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"11"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (53.7ms) Completed 200 OK in 72ms (Views: 68.2ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:08:04 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F11" for ::1 at 2019-08-05 22:08:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/11"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PUT "/intro/admin/tours/11/publish?published=true" for ::1 at 2019-08-05 22:08:05 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"HrbaCFsVJr77CBRJjUQw9N22lN6ZocX2N9UuY9vQs9MoBhyeWbzn4zCmVOKLc66CuN/M6yHplXC2vOHOHvOmyg==", "published"=>"true", "id"=>"11"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-ch9lo5' AND "intro_tours"."id" != 11) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-05 14:08:05.932132"], ["id", 11]]  (5.7ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/11 Completed 302 Found in 15ms (ActiveRecord: 6.3ms) Started GET "/intro/admin/tours/11" for ::1 at 2019-08-05 22:08:05 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"11"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (48.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (50.2ms) Completed 200 OK in 67ms (Views: 65.2ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:08:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F11" for ::1 at 2019-08-05 22:08:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/11"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:08:07 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (27.7ms) Completed 200 OK in 45ms (Views: 43.2ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:08:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:08:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.9ms) Started POST "/intro/tours/record" for ::1 at 2019-08-05 22:08:13 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>11, "tour"=>{"id"=>11}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 11], ["touch_count", 1], ["created_at", "2019-08-05 14:08:13.652169"], ["updated_at", "2019-08-05 14:08:13.652169"]]  (5.4ms) commit transaction Completed 500 Internal Server Error in 13ms (ActiveRecord: 6.4ms) Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" ORDER BY "intro_tour_histories"."id" DESC LIMIT 1 Intro::TourHistory Load (0.4ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" ORDER BY "intro_tour_histories"."id" DESC LIMIT 1  (0.2ms) begin transaction SQL (0.6ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 3]]  (6.1ms) commit transaction Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:41:32 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (51.9ms) Completed 200 OK in 74ms (Views: 66.6ms | ActiveRecord: 1.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:41:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.9ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:41:32 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-05 22:41:34 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>11, "tour"=>{"id"=>11}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 11], ["touch_count", 1], ["created_at", "2019-08-05 14:41:34.026892"], ["updated_at", "2019-08-05 14:41:34.026892"]]  (5.6ms) commit transaction Completed 200 OK in 17ms (Views: 0.2ms | ActiveRecord: 6.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:42:52 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (52.5ms) Completed 200 OK in 67ms (Views: 66.0ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-7a900ce127110493cc63e93a29dd8e9d133e8b3f641850cc228a6010dc22cd3f.js?body=1" for ::1 at 2019-08-05 22:42:52 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:42:52 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:42:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Intro::TourHistory Load (0.5ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" ORDER BY "intro_tour_histories"."id" DESC LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 4]]  (8.2ms) commit transaction Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:43:04 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (41.2ms) Completed 200 OK in 67ms (Views: 65.1ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:43:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:43:04 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-05 22:43:05 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>11, "tour"=>{"id"=>11}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 11], ["touch_count", 1], ["created_at", "2019-08-05 14:43:05.864017"], ["updated_at", "2019-08-05 14:43:05.864017"]]  (7.0ms) commit transaction Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 7.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 22:43:40 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (47.2ms) Completed 200 OK in 65ms (Views: 63.1ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-fd7d2297c7488a656bf1acc96bc18a68c184c79a61fefc028bd8431ce14a4e91.js?body=1" for ::1 at 2019-08-05 22:43:40 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-05 22:43:41 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 22:43:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 23:28:23 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (54.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (62.0ms) Completed 200 OK in 90ms (Views: 78.8ms | ActiveRecord: 1.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 23:28:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 17ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:28:25 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (32.8ms) Completed 200 OK in 51ms (Views: 47.7ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:28:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 23:28:28 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.6ms) Completed 200 OK in 49ms (Views: 48.1ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 23:28:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:28:32 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours", "tour"=>{}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-05 23:28:34 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2U+0k+PRsL59GTUFF9ozlyt+sxC7c8rGjq3bgE9Y7qPv/3IF4Xhx47a3da4R7a3hThfrJQM7mkAPxBQtinv7ug==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours", "query"=>""}, "ident"=>"intro/admin/tours#index-0hlsui", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/tours#index-0hlsui' LIMIT 1 SQL (0.3ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/tours\n action: index\nquery: ''\nsimple: http://localhost:9292/intro/admin/tours\nstrict: false\n"], ["ident", "intro/admin/tours#index-0hlsui"], ["controller_path", "intro/admin/tours"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-05 15:28:34.156110"], ["updated_at", "2019-08-05 15:28:34.156110"]]  (4.5ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/12 Completed 302 Found in 22ms (ActiveRecord: 4.9ms) Started GET "/intro/admin/tours/12" for ::1 at 2019-08-05 23:28:34 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"12"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 12]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (36.9ms) Completed 200 OK in 51ms (Views: 49.5ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F12" for ::1 at 2019-08-05 23:28:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/12"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:28:36 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (31.5ms) Completed 200 OK in 45ms (Views: 43.0ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:28:36 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-05 23:28:40 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.6ms) Completed 200 OK in 53ms (Views: 50.2ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-05 23:28:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew%3Fbrabrb%3Dbrabrb" for ::1 at 2019-08-05 23:28:41 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "tour"=>{}} Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-05 23:28:43 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c0RM/Kg/uEmccoz6ZOgiRKrZk0G85knmDtaz6E2ywzRF9IpqqpZ5FFfczFFi37wyz7DLdASuGWCPv3xFiJHWLQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new?brabrb=brabrb", "query"=>"brabrb=brabrb"}, "ident"=>"intro/admin/tours#new-govn2g", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/tours#new-govn2g' LIMIT 1 SQL (0.2ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/tours\n action: new\nquery: brabrb=brabrb\nsimple: http://localhost:9292/intro/admin/tours/new?brabrb=brabrb\nstrict: false\n"], ["ident", "intro/admin/tours#new-govn2g"], ["controller_path", "intro/admin/tours"], ["action_name", "new"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-05 15:28:43.573131"], ["updated_at", "2019-08-05 15:28:43.573131"]]  (3.7ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/13 Completed 302 Found in 20ms (ActiveRecord: 4.2ms) Started GET "/intro/admin/tours/13" for ::1 at 2019-08-05 23:28:43 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"13"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 13]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (35.0ms) Completed 200 OK in 49ms (Views: 47.2ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F13" for ::1 at 2019-08-05 23:28:43 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/13"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:28:46 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (31.4ms) Completed 200 OK in 54ms (Views: 50.8ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:28:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:28:51 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (48.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (50.7ms) Completed 200 OK in 69ms (Views: 64.3ms | ActiveRecord: 1.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:28:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.7ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.6ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 25ms (Views: 0.9ms | ActiveRecord: 2.0ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:28:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (43.9ms) Completed 200 OK in 60ms (Views: 57.2ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:28:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:29:13 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (36.8ms) Completed 200 OK in 52ms (Views: 49.6ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:29:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:29:16 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (36.9ms) Completed 200 OK in 51ms (Views: 48.9ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:29:16 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=3" for ::1 at 2019-08-05 23:29:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"3"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 2  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (50.7ms) Completed 200 OK in 71ms (Views: 66.6ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D3" for ::1 at 2019-08-05 23:29:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=3"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:29:19 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (35.5ms) Completed 200 OK in 49ms (Views: 47.2ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:29:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:29:20 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (39.4ms) Completed 200 OK in 56ms (Views: 52.8ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:29:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:35:41 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (38.4ms) Completed 200 OK in 54ms (Views: 51.3ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:35:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:37:10 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.6ms) Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.8ms) ActionView::Template::Error (Missing partial kaminari/bootstrap4/_paginator with {:locale=>[:en], :formats=>[:html, :html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/home/jinhu/Repos/intro/spec/dummy/app/views" * "/home/jinhu/.rvm/gems/ruby-2.1.9/gems/kaminari-core-1.1.1/app/views" * "/home/jinhu/Repos/intro/app/views" ): 16:
17: 18:
19: <%= yield %> 20:
21:
22:
actionview (4.2.11.1) lib/action_view/path_set.rb:46:in `find' actionview (4.2.11.1) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:25:in `render' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:32:in `render' kaminari-core (1.1.1) lib/kaminari/helpers/tags.rb:32:in `to_s' kaminari-core (1.1.1) lib/kaminari/helpers/paginator.rb:70:in `to_s' kaminari-core (1.1.1) lib/kaminari/helpers/helper_methods.rb:26:in `paginate' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:44:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__1546886090131838552_69841055787260' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:19:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___126659045874326757_69841053316180' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb:8:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_index_html_erb__1546886090131838552_69841055787260' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:37:58 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (390.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (401.9ms) Completed 200 OK in 432ms (Views: 417.7ms | ActiveRecord: 1.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:37:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.6ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 40ms (Views: 0.7ms | ActiveRecord: 1.7ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:38:00 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (80.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (82.6ms) Completed 200 OK in 98ms (Views: 95.1ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:38:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:38:02 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.8ms) Completed 200 OK in 54ms (Views: 51.0ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:38:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:38:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (34.5ms) Completed 200 OK in 47ms (Views: 45.1ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:38:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=3" for ::1 at 2019-08-05 23:38:04 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 2  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (29.5ms) Completed 200 OK in 42ms (Views: 40.3ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D3" for ::1 at 2019-08-05 23:38:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=3"} User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:38:05 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (35.0ms) Completed 200 OK in 51ms (Views: 47.5ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:38:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:38:06 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (38.8ms) Completed 200 OK in 54ms (Views: 51.4ms | ActiveRecord: 1.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:38:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:40:39 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (47.4ms) Completed 200 OK in 67ms (Views: 63.9ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:40:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:40:40 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (35.3ms) Completed 200 OK in 52ms (Views: 49.4ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:40:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:40:41 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.3ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (40.5ms) Completed 200 OK in 59ms (Views: 55.9ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:40:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:41:23 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (1.8ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (555911.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (555915.5ms) Completed 200 OK in 555940ms (Views: 555936.0ms | ActiveRecord: 2.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:50:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:50:42 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (1.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.2ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (67.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (70.7ms) Completed 200 OK in 92ms (Views: 89.2ms | ActiveRecord: 1.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:50:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:50:43 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (34.3ms) Completed 200 OK in 51ms (Views: 48.2ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:50:43 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:50:45 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (31.4ms) Completed 200 OK in 46ms (Views: 43.8ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:50:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours?page=3" for ::1 at 2019-08-05 23:50:46 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"3"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 2  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (44.4ms) Completed 200 OK in 61ms (Views: 57.9ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D3" for ::1 at 2019-08-05 23:50:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=3"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.5ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:50:47 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (33.5ms) Completed 200 OK in 48ms (Views: 45.6ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:50:47 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:50:48 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (38.1ms) Completed 200 OK in 56ms (Views: 52.7ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:50:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:50:50 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.1ms) Completed 200 OK in 54ms (Views: 51.2ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:50:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:50:51 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (35.0ms) Completed 200 OK in 52ms (Views: 49.3ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:50:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:50:52 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.0ms) Completed 200 OK in 55ms (Views: 51.9ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:50:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:50:53 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.4ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (34.0ms) Completed 200 OK in 49ms (Views: 46.7ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:50:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:50:54 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (44.0ms) Completed 200 OK in 63ms (Views: 59.8ms | ActiveRecord: 0.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:50:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=3" for ::1 at 2019-08-05 23:50:55 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 2  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (40.4ms) Completed 200 OK in 57ms (Views: 53.9ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D3" for ::1 at 2019-08-05 23:50:55 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=3"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:50:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.5ms) Completed 200 OK in 53ms (Views: 50.7ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:50:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:50:57 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (35.2ms) Completed 200 OK in 55ms (Views: 50.5ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:50:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:58:57 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (40.0ms) Completed 200 OK in 62ms (Views: 58.7ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:58:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:58:59 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (39.2ms) Completed 200 OK in 56ms (Views: 53.3ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:58:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours?page=3" for ::1 at 2019-08-05 23:59:00 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 2  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (43.7ms) Completed 200 OK in 60ms (Views: 57.3ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D3" for ::1 at 2019-08-05 23:59:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=3"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:59:02 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (45.7ms) Completed 200 OK in 61ms (Views: 58.4ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:59:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:59:03 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (40.3ms) Completed 200 OK in 58ms (Views: 55.7ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:59:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-05 23:59:05 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (39.0ms) Completed 200 OK in 55ms (Views: 52.0ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-05 23:59:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.5ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours?page=3" for ::1 at 2019-08-05 23:59:06 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"3"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 2  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (36.0ms) Completed 200 OK in 54ms (Views: 51.4ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D3" for ::1 at 2019-08-05 23:59:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=3"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-05 23:59:08 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (38.3ms) Completed 200 OK in 57ms (Views: 53.6ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-05 23:59:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 00:00:52 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-06 00:01:42 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (108.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (110.3ms) Completed 200 OK in 123ms (Views: 121.7ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tours.self-207cccfd471d53d865afc1fd672f51dcdf6a185fc82fca9ebb6135edfef42e71.css?body=1" for ::1 at 2019-08-06 00:01:42 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-06 00:01:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 00:01:42 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-06 00:01:49 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (70.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (72.0ms) Completed 200 OK in 88ms (Views: 85.9ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/admin/tours.self-dc0e8e4a899b45b4181c179f8bf870ef1644c708a1b1630d86dcf22d23671a54.css?body=1" for ::1 at 2019-08-06 00:01:49 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-06 00:01:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 00:01:49 +0800 Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-06 00:01:53 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (38.6ms) Completed 200 OK in 56ms (Views: 52.4ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-06 00:01:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours?page=3" for ::1 at 2019-08-06 00:01:55 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"3"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 2  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.8ms) Completed 200 OK in 55ms (Views: 52.3ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D3" for ::1 at 2019-08-06 00:01:55 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=3"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours?page=2" for ::1 at 2019-08-06 00:01:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Parameters: {"page"=>"2"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (46.0ms) Completed 200 OK in 73ms (Views: 69.9ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fpage%3D2" for ::1 at 2019-08-06 00:01:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours?page=2"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-06 00:01:57 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 1 OFFSET 0  (0.1ms) SELECT COUNT(*) FROM "intro_tours" Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (41.0ms) Completed 200 OK in 60ms (Views: 56.7ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-06 00:01:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/13/edit" for ::1 at 2019-08-06 00:52:36 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"13"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 13]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (51.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (54.2ms) Completed 200 OK in 82ms (Views: 68.6ms | ActiveRecord: 1.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F13%2Fedit" for ::1 at 2019-08-06 00:52:36 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/13/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 1.1ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F" for ::1 at 2019-08-06 00:52:41 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/", "tour"=>{}} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%3Fbrab%3Dbab" for ::1 at 2019-08-06 00:52:57 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours?brab=bab", "tour"=>{}} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=%2Fintro%2Fadmin%2Ftours%3Fxyz%3D1" for ::1 at 2019-08-06 00:53:04 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"/intro/admin/tours?xyz=1", "tour"=>{}} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 11:26:04 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (395.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (405.7ms) Completed 200 OK in 441ms (Views: 421.2ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.self-b7e96c1e700fce594b6cc5c7378769818792f81b87ab0d7d8168ef81cd24c759.js?body=1" for ::1 at 2019-08-06 11:26:04 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 11:26:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 61ms (Views: 0.5ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 11:26:08 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-06 11:58:47 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (42.4ms) Completed 200 OK in 60ms (Views: 55.0ms | ActiveRecord: 1.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-06 11:58:48 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/13/edit" for ::1 at 2019-08-06 11:58:50 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"13"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 13]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (29.4ms) Completed 200 OK in 41ms (Views: 38.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F13%2Fedit" for ::1 at 2019-08-06 11:58:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/13/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F13%2Fedit" for ::1 at 2019-08-06 11:59:00 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/13/edit", "tour"=>{}} Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=%2Fintro%2Fadmin%2Ftours%2F13%2Fedit" for ::1 at 2019-08-06 12:04:47 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"/intro/admin/tours/13/edit", "tour"=>{}} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:33:07 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (333.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (344.8ms) Completed 200 OK in 386ms (Views: 365.5ms | ActiveRecord: 0.7ms) Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-08-06 21:33:08 +0800 Started GET "/assets/shepherd.min.self-b7e96c1e700fce594b6cc5c7378769818792f81b87ab0d7d8168ef81cd24c759.js?body=1" for ::1 at 2019-08-06 21:33:08 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:33:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 23ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/rails/info/routes" for ::1 at 2019-08-06 21:33:21 +0800 Processing by Rails::InfoController#routes as HTML Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/railties-4.2.11.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (9.3ms) Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:37:39 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (46.5ms) Completed 200 OK in 108ms (Views: 58.5ms | ActiveRecord: 0.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:37:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:39:52 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (148.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (151.1ms) Completed 200 OK in 168ms (Views: 165.5ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/form.self-60d5d7a0597158fdbcf713d1cfb42a0562ec592f9518186da5c7fc6b0bf15b38.css?body=1" for ::1 at 2019-08-06 21:39:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:39:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:40:04 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (138.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (141.7ms) Completed 200 OK in 158ms (Views: 156.4ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/form.self-fe59801f3546983f3c10fa29739c07738c0a0005924166e764d635db7b821feb.css?body=1" for ::1 at 2019-08-06 21:40:04 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:40:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:40:23 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (102.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (105.2ms) Completed 200 OK in 122ms (Views: 119.5ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/form.self-8de19191e793bb9ee51399514cb7473f6967570966f4b0b3fcfc8e16ea1a3c88.css?body=1" for ::1 at 2019-08-06 21:40:23 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:40:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:40:35 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (55.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (167.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (169.3ms) Completed 200 OK in 190ms (Views: 187.0ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/form.self-aeb81b190d586e809397c56f10beb96470ba3c270efef6111cee0231467253b9.css?body=1" for ::1 at 2019-08-06 21:40:35 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:40:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:48:06 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (57.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (60.7ms) Completed 200 OK in 81ms (Views: 79.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/spinner.self-3cbbd65b6652d9245a019220e5c07414c7c6bf9b9d94691df595f27bd0f600c1.css?body=1" for ::1 at 2019-08-06 21:48:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:48:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 21:48:09 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:51:17 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (57.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (59.6ms) Completed 200 OK in 75ms (Views: 74.3ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/spinner.self-d3b47b65e81bc033726244fcaa74456f37329b6ad7110deca46e5392c8774cc6.css?body=1" for ::1 at 2019-08-06 21:51:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:51:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 21:51:18 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:51:24 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (63.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (65.7ms) Completed 200 OK in 85ms (Views: 83.2ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/spinner.self-ddbdff8b2473d5193b1ccfeb469f78e7baf265e161934d1dc09ec7ca542765ed.css?body=1" for ::1 at 2019-08-06 21:51:24 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:51:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 21:51:24 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:52:34 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (69.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (71.6ms) Completed 200 OK in 90ms (Views: 88.1ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/spinner.self-8109433a972f61cd38a4a568a8beb7f61a1435905295134b4029dc59c6c02a6a.css?body=1" for ::1 at 2019-08-06 21:52:34 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:52:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 21:52:34 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:53:16 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (65.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (67.6ms) Completed 200 OK in 89ms (Views: 86.5ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/spinner.self-10d7570078efba879648b2179a8eb74891250b1ceeadebf96140fbcae4c3930f.css?body=1" for ::1 at 2019-08-06 21:53:17 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 21:53:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:53:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:54:07 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (70.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (72.3ms) Completed 200 OK in 89ms (Views: 88.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/spinner.self-be278cf1a29332f9421d188c2213bf43736a0774bd7c7d12ae7dead5653ddcbe.css?body=1" for ::1 at 2019-08-06 21:54:07 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 21:54:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:54:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (3.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 3.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 21:58:49 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.2ms) Completed 200 OK in 53ms (Views: 51.8ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 21:58:49 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 21:58:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-06 21:58:51 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hebpHK2poVechX6ehEBcWZnwYTJSLIhkTPAlsW/0D2GzVi+KrwBgClcrPjWCd8Iv/Jk5B+pk2OLNmeocqtcaeA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-06 21:58:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hebpHK2poVechX6ehEBcWZnwYTJSLIhkTPAlsW/0D2GzVi+KrwBgClcrPjWCd8Iv/Jk5B+pk2OLNmeocqtcaeA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-06 21:58:55 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hebpHK2poVechX6ehEBcWZnwYTJSLIhkTPAlsW/0D2GzVi+KrwBgClcrPjWCd8Iv/Jk5B+pk2OLNmeocqtcaeA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:00:17 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (64.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (66.6ms) Completed 200 OK in 92ms (Views: 90.1ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/loading.self-be278cf1a29332f9421d188c2213bf43736a0774bd7c7d12ae7dead5653ddcbe.css?body=1" for ::1 at 2019-08-06 22:00:17 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:00:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:00:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:04:40 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (118.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (121.4ms) Completed 200 OK in 140ms (Views: 138.0ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/form.self-bb20ee7a8dbf42092082fb297ca348e08d69ced1001b3f24f02314d587cc1c21.css?body=1" for ::1 at 2019-08-06 22:04:40 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:04:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.6ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:04:51 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (44.6ms) Completed 200 OK in 62ms (Views: 60.1ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:04:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:06:18 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (122.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (124.9ms) Completed 200 OK in 141ms (Views: 139.2ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/form.self-38ff62babb683e923cadba0c5a5cd6431ad32b46655fc7f7cec487b13e7a1a42.css?body=1" for ::1 at 2019-08-06 22:06:18 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:06:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:12:17 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (114.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (117.1ms) Completed 200 OK in 135ms (Views: 132.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:12:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:12:32 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.5ms) Completed 200 OK in 52ms (Views: 50.3ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:12:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:12:54 +0800 Processing by Intro::Admin::ToursController#new as HTML Redirected to http://localhost:9292/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-06 22:12:54 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.8ms) Completed 200 OK in 52ms (Views: 51.5ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-38ff62babb683e923cadba0c5a5cd6431ad32b46655fc7f7cec487b13e7a1a42.css?body=1" for ::1 at 2019-08-06 22:12:55 +0800 Started GET "/assets/intro/admin/components/loading.self-be278cf1a29332f9421d188c2213bf43736a0774bd7c7d12ae7dead5653ddcbe.css?body=1" for ::1 at 2019-08-06 22:12:55 +0800 Started GET "/assets/intro/admin/tours.self-dc0e8e4a899b45b4181c179f8bf870ef1644c708a1b1630d86dcf22d23671a54.css?body=1" for ::1 at 2019-08-06 22:12:55 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-08-06 22:13:23 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"63RVmZFmVYEXCbFl44MJKyRfT7hRa7lo+s2Sri8yYdctuqbIqFwVI98NPdE9+64140lO4wVvVYfDJX7vlCeFUQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-06 22:13:23 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (29.0ms) Completed 200 OK in 43ms (Views: 40.9ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.self-b7e96c1e700fce594b6cc5c7378769818792f81b87ab0d7d8168ef81cd24c759.js?body=1" for ::1 at 2019-08-06 22:13:23 +0800 Started GET "/assets/intro/application.self-fd7d2297c7488a656bf1acc96bc18a68c184c79a61fefc028bd8431ce14a4e91.js?body=1" for ::1 at 2019-08-06 22:13:23 +0800 Started GET "/assets/intro/_mixins.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-06 22:13:23 +0800 Started GET "/assets/intro/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-06 22:13:23 +0800 Started GET "/assets/intro/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for ::1 at 2019-08-06 22:13:23 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-06 22:13:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:13:25 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (27.3ms) Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:13:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:15:55 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:16:25 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (58.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (59.5ms) Completed 200 OK in 74ms (Views: 72.6ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/button.self-0c89fe75edb93d0e430e433fb8cb13d35581be736af39de47e48eab1f6bf7ef7.css?body=1" for ::1 at 2019-08-06 22:16:26 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:16:26 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:16:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:16:33 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.8ms) Completed 200 OK in 43ms (Views: 41.9ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/components/button.self-0c89fe75edb93d0e430e433fb8cb13d35581be736af39de47e48eab1f6bf7ef7.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/components/checkbox.self-3f83132468083d2bcaa0ecb176d9c64d150b8cd147c66b148bcd67c52677db41.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/components/form.self-38ff62babb683e923cadba0c5a5cd6431ad32b46655fc7f7cec487b13e7a1a42.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/components/loading.self-be278cf1a29332f9421d188c2213bf43736a0774bd7c7d12ae7dead5653ddcbe.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/components/select.self-c1bf991d4d88098f813066681300c4477fd3c095a1e21a8a7a518318bc9c2d99.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/tours.self-dc0e8e4a899b45b4181c179f8bf870ef1644c708a1b1630d86dcf22d23671a54.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/tour.self-1042f383ee7450636cf0cb81bbb45db17ea8697c36c3d89ff5b0978297d19685.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/application.self-72cef24f6d2b0bf68825925888b5c699c5ed400a0d9274ad476652e664cfde95.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/shepherd.min.self-b7e96c1e700fce594b6cc5c7378769818792f81b87ab0d7d8168ef81cd24c759.js?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/application.self-fd7d2297c7488a656bf1acc96bc18a68c184c79a61fefc028bd8431ce14a4e91.js?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/_mixins.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/assets/intro/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for ::1 at 2019-08-06 22:16:33 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:16:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:17:19 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (55.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (56.4ms) Completed 200 OK in 72ms (Views: 71.6ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/admin/components/button.self-1bb260bb8479f0992c1b0821e9ba867bcb210044f5d483f54b96d2b1821a47ae.css?body=1" for ::1 at 2019-08-06 22:17:19 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:17:19 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:17:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-06 22:17:22 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (39.2ms) Completed 200 OK in 59ms (Views: 55.7ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-06 22:17:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:17:23 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:17:26 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.8ms) Completed 200 OK in 64ms (Views: 61.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:17:27 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:17:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:17:31 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.0ms) Completed 200 OK in 51ms (Views: 49.9ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/components/button.self-1bb260bb8479f0992c1b0821e9ba867bcb210044f5d483f54b96d2b1821a47ae.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/components/checkbox.self-3f83132468083d2bcaa0ecb176d9c64d150b8cd147c66b148bcd67c52677db41.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/components/form.self-38ff62babb683e923cadba0c5a5cd6431ad32b46655fc7f7cec487b13e7a1a42.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/components/loading.self-be278cf1a29332f9421d188c2213bf43736a0774bd7c7d12ae7dead5653ddcbe.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/components/select.self-c1bf991d4d88098f813066681300c4477fd3c095a1e21a8a7a518318bc9c2d99.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/tours.self-dc0e8e4a899b45b4181c179f8bf870ef1644c708a1b1630d86dcf22d23671a54.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/tour.self-1042f383ee7450636cf0cb81bbb45db17ea8697c36c3d89ff5b0978297d19685.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/application.self-72cef24f6d2b0bf68825925888b5c699c5ed400a0d9274ad476652e664cfde95.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/shepherd.min.self-b7e96c1e700fce594b6cc5c7378769818792f81b87ab0d7d8168ef81cd24c759.js?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/application.self-fd7d2297c7488a656bf1acc96bc18a68c184c79a61fefc028bd8431ce14a4e91.js?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/_mixins.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/assets/intro/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for ::1 at 2019-08-06 22:17:31 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:17:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:23:08 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:24:54 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (32.2ms) Completed 200 OK in 46ms (Views: 44.6ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:24:54 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:24:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:25:06 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.5ms) Completed 200 OK in 52ms (Views: 49.9ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:25:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:25:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:25:59 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (46.2ms) Completed 200 OK in 69ms (Views: 67.3ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:25:59 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:25:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 22:57:30 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (55.3ms) Completed 200 OK in 82ms (Views: 72.6ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 22:57:30 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 22:57:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:02:42 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.3ms) Completed 200 OK in 52ms (Views: 50.7ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:02:42 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:02:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:04:05 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (41.3ms) Completed 200 OK in 57ms (Views: 55.2ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:04:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:04:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:04:19 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (41.2ms) Completed 200 OK in 57ms (Views: 55.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:04:20 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:04:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:12:39 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (38.6ms) Completed 200 OK in 61ms (Views: 52.2ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:12:39 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:12:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:12:41 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Can't verify CSRF token authenticity Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms) ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken): actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:181:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:209:in `handle_unverified_request' actionpack (4.2.11.1) lib/action_controller/metal/request_forgery_protection.rb:204:in `verify_authenticity_token' activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:15:05 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (33.4ms) Completed 200 OK in 57ms (Views: 55.5ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:15:05 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:15:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:15:07 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `authenticate' for #): activesupport (4.2.11.1) lib/active_support/callbacks.rb:432:in `block in make_lambda' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:164:in `block in halting' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `each' activesupport (4.2.11.1) lib/active_support/callbacks.rb:504:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:15:49 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.1ms) Completed 200 OK in 57ms (Views: 48.5ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:15:49 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:15:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:15:52 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="IMG_0572.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"IMG_0572.JPG\"\r\nContent-Type: image/jpeg\r\n">} Completed 500 Internal Server Error in 86269ms (ActiveRecord: 0.0ms) NameError (uninitialized constant CarrierWave): /home/jinhu/Repos/intro/app/uploaders/intro/image_uploader.rb:1:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:12:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:17:44 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.5ms) Completed 200 OK in 60ms (Views: 58.4ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:17:44 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:17:44 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:17:54 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.1ms) Completed 200 OK in 48ms (Views: 45.5ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:17:54 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:17:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:17:57 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 17749ms (ActiveRecord: 0.0ms) NameError (uninitialized constant CarrierWave): /home/jinhu/Repos/intro/app/uploaders/intro/image_uploader.rb:1:in `' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:12:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:18:22 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (478.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (490.5ms) Completed 200 OK in 526ms (Views: 509.3ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:18:23 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:18:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 25ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:18:25 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 713630ms (ActiveRecord: 0.0ms) ActionView::MissingTemplate (Missing template intro/admin/images/create, intro/admin/application/create, intro/application/create, application/create with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/home/jinhu/Repos/intro/spec/dummy/app/views" * "/home/jinhu/.rvm/gems/ruby-2.1.9/gems/kaminari-core-1.1.1/app/views" * "/home/jinhu/Repos/intro/app/views" ): actionview (4.2.11.1) lib/action_view/path_set.rb:46:in `find' actionview (4.2.11.1) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (12.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:30:22 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.0ms) Completed 200 OK in 58ms (Views: 48.1ms | ActiveRecord: 1.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:30:22 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:30:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 21ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:30:25 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="IMG_0572.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"IMG_0572.JPG\"\r\nContent-Type: image/jpeg\r\n">} Completed 500 Internal Server Error in 6046ms (ActiveRecord: 0.0ms) ArgumentError (string contains null byte): carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `expand_path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:150:in `exists?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:99:in `size' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:141:in `empty?' carrierwave (1.3.1) lib/carrierwave/uploader/cache.rb:120:in `cache!' carrierwave (1.3.1) lib/carrierwave/uploader/store.rb:63:in `store!' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:13:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:30:51 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.5ms) Completed 200 OK in 59ms (Views: 50.5ms | ActiveRecord: 0.9ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:30:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:30:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:30:54 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="IMG_0572.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"IMG_0572.JPG\"\r\nContent-Type: image/jpeg\r\n">} Completed 500 Internal Server Error in 8766ms (ActiveRecord: 0.0ms) ArgumentError (string contains null byte): carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `expand_path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:150:in `exists?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:99:in `size' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:141:in `empty?' carrierwave (1.3.1) lib/carrierwave/uploader/cache.rb:120:in `cache!' carrierwave (1.3.1) lib/carrierwave/uploader/store.rb:63:in `store!' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:14:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:31:25 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 35746ms (ActiveRecord: 0.0ms) NoMethodError (undefined method `path' for nil:NilClass): /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:15:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:40:51 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (42.1ms) Completed 200 OK in 64ms (Views: 54.0ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:40:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:40:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 19ms (Views: 0.3ms | ActiveRecord: 1.1ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:40:55 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Filter chain halted as :require_image rendered or redirected Completed 400 Bad Request in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:41:23 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (49.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (50.4ms) Completed 200 OK in 74ms (Views: 64.6ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:41:24 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:41:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:41:26 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Filter chain halted as :require_image rendered or redirected Completed 400 Bad Request in 20939ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:41:56 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (41.6ms) Completed 200 OK in 67ms (Views: 56.1ms | ActiveRecord: 0.9ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:41:56 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:41:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:42:00 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 447022ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:49:27 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.4ms) Completed 200 OK in 63ms (Views: 54.1ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:49:27 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:49:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:49:33 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) ArgumentError (string contains null byte): carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `expand_path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:150:in `exists?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:99:in `size' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:141:in `empty?' carrierwave (1.3.1) lib/carrierwave/uploader/cache.rb:120:in `cache!' carrierwave (1.3.1) lib/carrierwave/uploader/store.rb:63:in `store!' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:15:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.9ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:53:52 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.0ms) Completed 200 OK in 72ms (Views: 59.0ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:53:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:53:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:53:55 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) ArgumentError (invalid byte sequence in UTF-8): activesupport (4.2.11.1) lib/active_support/core_ext/object/blank.rb:117:in `===' activesupport (4.2.11.1) lib/active_support/core_ext/object/blank.rb:117:in `blank?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:132:in `is_path?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:98:in `size' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:141:in `empty?' carrierwave (1.3.1) lib/carrierwave/uploader/cache.rb:120:in `cache!' carrierwave (1.3.1) lib/carrierwave/uploader/store.rb:63:in `store!' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:15:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-06 23:54:45 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (32.4ms) Completed 200 OK in 53ms (Views: 45.0ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-06 23:54:45 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-06 23:54:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 18ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/images" for ::1 at 2019-08-06 23:54:47 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) ArgumentError (invalid byte sequence in UTF-8): activesupport (4.2.11.1) lib/active_support/core_ext/object/blank.rb:117:in `===' activesupport (4.2.11.1) lib/active_support/core_ext/object/blank.rb:117:in `blank?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:132:in `is_path?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:98:in `size' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:141:in `empty?' carrierwave (1.3.1) lib/carrierwave/uploader/cache.rb:120:in `cache!' carrierwave (1.3.1) lib/carrierwave/uploader/store.rb:63:in `store!' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:15:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:04:05 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (32.6ms) Completed 200 OK in 52ms (Views: 44.2ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:04:05 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:04:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 17ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:04:09 +0800 SyntaxError (/home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:26: syntax error, unexpected '}', expecting => ...'intro.errors.require_image') }, status: :bad_request } ... ^): /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:26: syntax error, unexpected '}', expecting => ...'intro.errors.require_image') }, status: :bad_request } ... ^ activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.11.1) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.11.1) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.11.1) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.11.1) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.11.1) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.11.1) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.11.1) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:60:in `controller' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:39:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:04:47 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.7ms) Completed 200 OK in 59ms (Views: 48.9ms | ActiveRecord: 1.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:04:47 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:04:47 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:04:49 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.0ms) ArgumentError (string contains null byte): carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `expand_path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:150:in `exists?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:99:in `size' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:141:in `empty?' carrierwave (1.3.1) lib/carrierwave/uploader/cache.rb:120:in `cache!' carrierwave (1.3.1) lib/carrierwave/uploader/store.rb:63:in `store!' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:19:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:05:07 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (92.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (94.1ms) Completed 200 OK in 120ms (Views: 111.4ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:05:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:05:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.4ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:05:09 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.0ms) ArgumentError (string contains null byte): carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `expand_path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:150:in `exists?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:99:in `size' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:141:in `empty?' carrierwave (1.3.1) lib/carrierwave/uploader/cache.rb:120:in `cache!' carrierwave (1.3.1) lib/carrierwave/uploader/store.rb:63:in `store!' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:19:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:05:35 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (359.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (369.2ms) Completed 200 OK in 405ms (Views: 386.2ms | ActiveRecord: 0.9ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:05:35 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:05:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 1.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:05:38 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 500 Internal Server Error in 10654ms (ActiveRecord: 0.0ms) ArgumentError (string contains null byte): carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `expand_path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:119:in `path' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:150:in `exists?' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:99:in `size' carrierwave (1.3.1) lib/carrierwave/sanitized_file.rb:141:in `empty?' carrierwave (1.3.1) lib/carrierwave/uploader/cache.rb:120:in `cache!' carrierwave (1.3.1) lib/carrierwave/uploader/store.rb:63:in `store!' /home/jinhu/Repos/intro/app/controllers/intro/admin/images_controller.rb:19:in `create' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:09:17 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (41.4ms) Completed 200 OK in 76ms (Views: 65.6ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:09:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:09:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 20ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:09:20 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:09:48 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (42.3ms) Completed 200 OK in 65ms (Views: 55.9ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:09:48 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:09:48 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.5ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.4ms | ActiveRecord: 1.2ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:09:55 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 15409ms (Views: 3.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:10:38 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.4ms) Completed 200 OK in 57ms (Views: 48.4ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:10:39 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:10:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:10:42 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:10:57 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (50.3ms) Completed 200 OK in 68ms (Views: 66.0ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:10:57 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:10:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:10:59 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:13:34 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.2ms) Completed 200 OK in 55ms (Views: 46.7ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:13:34 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:13:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:13:36 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 834561ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:28:18 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:34:21 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (22.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (361.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (372.7ms) Completed 200 OK in 406ms (Views: 393.0ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:34:22 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:34:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 78ms (Views: 0.7ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:35:12 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.9ms) Completed 200 OK in 56ms (Views: 53.8ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:35:12 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:35:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:35:15 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="IMG_0572.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"IMG_0572.JPG\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 15ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:35:21 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:35:37 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.7ms) Completed 200 OK in 57ms (Views: 55.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:35:38 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:35:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:35:44 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 00:35:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ltrM7FkrTQgI9fOGPUw4WWsvxg1G4m4XgDWjrmLzhPSgagp6W4KMVcNbsy07e6YvDkaeOP6qPpEBXGwDp9CR7Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rbabrabr", "image_url"=>"/uploads/intro/20190807/1565109344_GMX_GIHc.png", "image_placement"=>"top", "element"=>"b", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:36:00 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09 (copy).png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09 (copy).png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 00:36:32 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ltrM7FkrTQgI9fOGPUw4WWsvxg1G4m4XgDWjrmLzhPSgagp6W4KMVcNbsy07e6YvDkaeOP6qPpEBXGwDp9CR7Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rbabrabr", "image_url"=>"/uploads/intro/20190807/1565109360_EFBVUD-D.png", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 00:36:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ltrM7FkrTQgI9fOGPUw4WWsvxg1G4m4XgDWjrmLzhPSgagp6W4KMVcNbsy07e6YvDkaeOP6qPpEBXGwDp9CR7Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rbabrabr", "image_url"=>"/uploads/intro/20190807/1565109360_EFBVUD-D.png", "image_placement"=>"top", "element"=>"brbarbab", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:36:43 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 00:36:45 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ltrM7FkrTQgI9fOGPUw4WWsvxg1G4m4XgDWjrmLzhPSgagp6W4KMVcNbsy07e6YvDkaeOP6qPpEBXGwDp9CR7Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rbabrabr", "image_url"=>"/uploads/intro/20190807/1565109403_wQXJBJKl.png", "image_placement"=>"top", "element"=>"brbarbab", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:36:47 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (25.9ms) Completed 200 OK in 36ms (Views: 34.8ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:36:47 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:36:47 +0800 Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:37:37 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:37:40 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 00:37:47 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uUFusplyyMMD4+p0O4Z33E0CN3hrzsZnpC/KfTS6muOP8agkm9sJnshNqt89semqKGtvTdOGluElRgXQ8ZmP+g==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarbarb", "image_url"=>"/uploads/intro/20190807/1565109457_YlV_xAdK.png", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"rbarba", "content"=>"brba", "image_url"=>"/uploads/intro/20190807/1565109460_VltAXN6i.png", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 00:48:39 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (28.6ms) Completed 200 OK in 42ms (Views: 40.7ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 00:48:39 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 00:48:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:48:44 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:49:10 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09 (copy).png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"logo-37be8435c8006021c36e41ababb489bf03a6df14dc9daac1ed280c4fb5fe9d09 (copy).png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 00:49:15 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="IMG_0572.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"IMG_0572.JPG\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 09:19:58 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (22.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (396.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (407.6ms) Completed 200 OK in 444ms (Views: 426.1ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.self-b7e96c1e700fce594b6cc5c7378769818792f81b87ab0d7d8168ef81cd24c759.js?body=1" for ::1 at 2019-08-07 09:19:59 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 09:19:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 66ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:20:01 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (30.8ms) Completed 200 OK in 47ms (Views: 43.1ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:20:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 09:20:03 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (33.4ms) Completed 200 OK in 49ms (Views: 46.2ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 09:20:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=brabrabrb" for ::1 at 2019-08-07 09:20:06 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"brabrabrb", "tour"=>{}} Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:20:16 +0800 Started GET "/intro/admin/tours/route?path=brabrabrbbrab" for ::1 at 2019-08-07 09:20:24 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"brabrabrbbrab", "tour"=>{}} Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:24:08 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours", "tour"=>{}} Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin" for ::1 at 2019-08-07 09:25:43 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin", "tour"=>{}} Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin" for ::1 at 2019-08-07 09:25:56 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin", "tour"=>{}} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-07 09:26:19 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"5+w5rsj75YcDHGVPnjJRySU47P8BQ+KvnRBR5s0yP3nRXP84ylIk2siyJeSYBc+/QFG0yrkLsikceZ5LCBEqYA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' LIMIT 1 SQL (0.3ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/tours\n action: index\nquery: ''\nsimple: http://localhost:9292/intro/admin\nstrict: false\n"], ["ident", "intro/admin/tours#index-zy1vgx"], ["controller_path", "intro/admin/tours"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\noverlay_visible: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-07 01:26:19.320334"], ["updated_at", "2019-08-07 01:26:19.320334"]]  (6.9ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/14 Completed 302 Found in 32ms (ActiveRecord: 7.4ms) Started GET "/intro/admin/tours/14" for ::1 at 2019-08-07 09:26:19 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (32.9ms) Completed 200 OK in 47ms (Views: 44.4ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:26:19 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 09:26:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started PUT "/intro/admin/tours/14/publish?published=true" for ::1 at 2019-08-07 09:26:24 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"xyOrT9pmDTZR8gAQ9pM7kt4QSX00MRXvT/U0n45I6pbxk23Z2M/Ma5pcQLvwpKXku3kRSIx5RWnOnPsyS2v/jw==", "published"=>"true", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-07 01:26:24.133334"], ["id", 14]]  (8.7ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/14 Completed 302 Found in 19ms (ActiveRecord: 9.3ms) Started GET "/intro/admin/tours/14" for ::1 at 2019-08-07 09:26:24 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (39.3ms) Completed 200 OK in 51ms (Views: 49.5ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:26:24 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 09:26:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:26:25 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (28.3ms) Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:26:25 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:26:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:56:08 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (75.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (76.7ms) Completed 200 OK in 88ms (Views: 86.7ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-cbb1a7bdc0facb474b63574fb7bf249f530c3dfea889f4b4c26ee9f8eabecad0.js?body=1" for ::1 at 2019-08-07 09:56:08 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:56:08 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:56:22 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (42.3ms) Completed 200 OK in 60ms (Views: 57.0ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-d14c080386e1a6910296190a740941d0a4db901702ec2e350f09cf9108c50838.js?body=1" for ::1 at 2019-08-07 09:56:22 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:56:22 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:56:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:56:26 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (34.8ms) Completed 200 OK in 51ms (Views: 47.4ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:56:26 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:56:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:56:28 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.3ms) Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:56:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:56:28 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:56:30 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.9ms) Completed 200 OK in 34ms (Views: 32.2ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:56:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:56:30 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:56:42 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (46.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (49.4ms) Completed 200 OK in 67ms (Views: 63.3ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/application.self-bcf08a13607292be71ce1e819cc4c9608fc7adf340ba400da8f980ab3ad6a4d2.js?body=1" for ::1 at 2019-08-07 09:56:42 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:56:42 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:56:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:57:00 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (45.1ms) Completed 200 OK in 62ms (Views: 59.0ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:57:00 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:57:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:57:03 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (23.3ms) Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:57:03 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 09:57:04 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (25.9ms) Completed 200 OK in 37ms (Views: 35.6ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 09:57:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 09:57:05 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:02:53 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.2ms) Completed 200 OK in 48ms (Views: 46.9ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/application.self-4e94802641109b1ee0235e7b1bd3c2c91951b280e05edbd85bfecaf498f0d800.js?body=1" for ::1 at 2019-08-07 10:02:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:02:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:02:53 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:05:16 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (35.2ms) Completed 200 OK in 50ms (Views: 47.1ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:05:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:05:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:13:51 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (43.8ms) Completed 200 OK in 55ms (Views: 53.9ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-044db37e150e7e410a126685f539477efb0cd48005fb46d06f12711823a3849e.js?body=1" for ::1 at 2019-08-07 10:13:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:13:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:13:51 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:13:53 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (34.8ms) Completed 200 OK in 51ms (Views: 47.4ms | ActiveRecord: 1.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:13:54 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:13:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:13:55 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (32.0ms) Completed 200 OK in 46ms (Views: 43.6ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:13:55 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:13:55 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:14:00 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (31.1ms) Completed 200 OK in 47ms (Views: 44.5ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:14:00 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:14:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:17:29 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (53.4ms) Completed 200 OK in 65ms (Views: 63.8ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/shepherd.self-3b4deabe26f7ef329acde37439399136459e35a1a024eb676669312eb5addafb.css?body=1" for ::1 at 2019-08-07 10:17:29 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:17:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:17:29 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:17:45 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:9292/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-07 10:17:45 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-07 10:18:18 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rSIlUsoez8rhINgaMj+uNPANR0ZIPmGsz9B5xexgtgL9GFJORiun/Vckkt2G3lA087fCYVKZXxGcmN6cRwS28w==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:18:18 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (27.6ms) Completed 200 OK in 39ms (Views: 37.6ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/application.self-d14c080386e1a6910296190a740941d0a4db901702ec2e350f09cf9108c50838.js?body=1" for ::1 at 2019-08-07 10:18:18 +0800 Started GET "/assets/intro/_mixins.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-07 10:18:18 +0800 Started GET "/assets/intro/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-07 10:18:18 +0800 Started GET "/assets/intro/shepherd.self-3b4deabe26f7ef329acde37439399136459e35a1a024eb676669312eb5addafb.css?body=1" for ::1 at 2019-08-07 10:18:18 +0800 Started GET "/assets/intro/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for ::1 at 2019-08-07 10:18:18 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:18:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:22:26 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (54.3ms) Completed 200 OK in 70ms (Views: 66.1ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/tour.self-d14c080386e1a6910296190a740941d0a4db901702ec2e350f09cf9108c50838.js?body=1" for ::1 at 2019-08-07 10:22:27 +0800 Started GET "/assets/intro/application.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2019-08-07 10:22:27 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:22:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:22:27 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:22:28 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.7ms) Completed 200 OK in 53ms (Views: 50.5ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:22:28 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:22:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:22:29 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (44.1ms) Completed 200 OK in 57ms (Views: 55.0ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:22:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:22:29 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:22:31 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (31.5ms) Completed 200 OK in 43ms (Views: 40.6ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:22:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:22:31 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:22:32 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (37.2ms) Completed 200 OK in 51ms (Views: 48.2ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:22:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:22:32 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:23:11 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (32.5ms) Completed 200 OK in 45ms (Views: 43.4ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:23:11 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:23:12 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:23:50 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (88.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (91.7ms) Completed 200 OK in 107ms (Views: 104.0ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/application.self-888a8efc93d42375b4dc740590c6bcbda87c9ce3b5c6d217712ae06e72bb325d.js?body=1" for ::1 at 2019-08-07 10:23:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:23:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:23:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:23:51 +0800 Started GET "/" for ::1 at 2019-08-07 10:25:22 +0800 Processing by HomeController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) Started GET "/weclome" for ::1 at 2019-08-07 10:25:35 +0800 ActionController::RoutingError (No route matches [GET] "/weclome"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.7ms) Started GET "/" for ::1 at 2019-08-07 10:25:58 +0800 Processing by HomeController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-08-07 10:26:04 +0800 Processing by HomeController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-08-07 10:26:05 +0800 Processing by HomeController#index as HTML Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-08-07 10:27:31 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (0.3ms) Completed 200 OK in 14ms (Views: 14.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2019-08-07 10:27:31 +0800 Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2019-08-07 10:27:31 +0800 Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2019-08-07 10:28:25 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 10:28:40 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (42.8ms) Completed 200 OK in 68ms (Views: 58.0ms | ActiveRecord: 1.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:28:40 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 10:28:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.9ms) Started GET "/assets/intro/admin/application.self-72cef24f6d2b0bf68825925888b5c699c5ed400a0d9274ad476652e664cfde95.css?body=1" for ::1 at 2019-08-07 10:29:04 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 10:31:06 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (46.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (48.2ms) Completed 200 OK in 93ms (Views: 91.6ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-d14c080386e1a6910296190a740941d0a4db901702ec2e350f09cf9108c50838.js?body=1" for ::1 at 2019-08-07 10:31:06 +0800 Started GET "/assets/intro/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-07 10:31:06 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:31:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 10:31:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:31:14 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (2.1ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (20.4ms) Completed 200 OK in 44ms (Views: 38.6ms | ActiveRecord: 2.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:31:14 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:31:14 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-07 10:31:49 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>14, "tour"=>{"id"=>14}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 14 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (2.2ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 14], ["touch_count", 1], ["created_at", "2019-08-07 02:31:49.802360"], ["updated_at", "2019-08-07 02:31:49.802360"]]  (7.5ms) commit transaction Completed 200 OK in 20ms (Views: 0.2ms | ActiveRecord: 10.4ms) Started GET "/" for ::1 at 2019-08-07 10:31:59 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (0.1ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-08-07 10:34:00 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (13.5ms) Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined local variable or method `intro_engine' for #<#:0x007f1beed55168>): 1: <%= link_to t('intro.admin.add_tour'), intro_engine.new_admin_tour_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb___1756082369697118986_69878973848400' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.6ms) Started GET "/" for ::1 at 2019-08-07 10:35:38 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (2.6ms) Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `new_admin_tour_path' for Intro::Engine:Class): 1: <%= link_to t('intro.admin.add_tour'), Intro::Engine.new_admin_tour_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb___1756082369697118986_46948620833340' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.6ms) Started GET "/" for ::1 at 2019-08-07 10:41:06 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.9ms) Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 10:41:47 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (25.7ms) Completed 200 OK in 48ms (Views: 46.8ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:41:47 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 10:41:47 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:41:49 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (18.3ms) Completed 200 OK in 51ms (Views: 47.6ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:41:49 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:41:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:41:51 +0800 Started GET "/" for ::1 at 2019-08-07 10:43:04 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.3ms) Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:43:05 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.8ms) Completed 200 OK in 51ms (Views: 48.1ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:43:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:43:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:43:09 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.6ms) Completed 200 OK in 40ms (Views: 37.4ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:43:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:43:09 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:43:13 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:43:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:43:13 +0800 Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-07 10:43:14 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"zHse1QWKIVFaNX/WXlhsW57FU6HC5cFi+BAFcXwVybT6y9hDByPgDJGbP31Yb/It+6wLlHqtkeR5ecrcuTbcrQ=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-07 10:43:14 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:43:16 +0800 Started GET "/" for ::1 at 2019-08-07 10:43:18 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.9ms) Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-08-07 10:43:19 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.8ms) Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:43:20 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:9292/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-07 10:43:20 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-07 10:43:21 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"mpImUg7+3s+PfIF8yggfa5IzclQkHC89vkRKj2iCgI+sIuDEDFcfkkTSwdfMP4Ed91oqYZxUf7s/LYUiraGVlg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:43:21 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.6ms) Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:43:21 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:43:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:43:52 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (18.5ms) Completed 200 OK in 40ms (Views: 38.5ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:43:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:43:52 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:43:53 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (23.4ms) Completed 200 OK in 47ms (Views: 44.3ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:43:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:43:54 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:47:43 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:9292/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-07 10:47:43 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 45ms (Views: 44.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:47:54 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (1.9ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.4ms) Completed 200 OK in 49ms (Views: 44.6ms | ActiveRecord: 2.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 10:47:54 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:47:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-07 10:48:28 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"MHxLMZ6ff22Nbmxrbe1QWzwzaXqN8viTKN/1bVTgMuEtduHdYW9ZrKCLf8yoQcwnQEXFxQaNc+Nkrq+Lp3tMpQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 10:48:28 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (16.0ms) Completed 200 OK in 43ms (Views: 41.5ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/shepherd.self-d14c080386e1a6910296190a740941d0a4db901702ec2e350f09cf9108c50838.js?body=1" for ::1 at 2019-08-07 10:48:28 +0800 Started GET "/assets/intro/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-07 10:48:28 +0800 Started GET "/assets/intro/shepherd.self-3b4deabe26f7ef329acde37439399136459e35a1a024eb676669312eb5addafb.css?body=1" for ::1 at 2019-08-07 10:48:28 +0800 Started GET "/assets/intro/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-07 10:48:28 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 10:48:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/14/edit" for ::1 at 2019-08-07 11:01:52 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (25.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (427.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (438.1ms) Completed 200 OK in 519ms (Views: 496.0ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:01:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14%2Fedit" for ::1 at 2019-08-07 11:01:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/14/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 24ms (Views: 0.4ms | ActiveRecord: 0.9ms) Intro::TourHistory Load (1.7ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories"  (0.1ms) begin transaction SQL (1.3ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 5]]  (5.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 6]]  (5.6ms) commit transaction Started GET "/intro/admin/tours" for ::1 at 2019-08-07 11:07:33 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (43.3ms) Completed 200 OK in 67ms (Views: 64.4ms | ActiveRecord: 0.7ms) Started GET "/assets/intro/shepherd.self-67e62835e07aaa3bc82ed3fad9016fa581a8e85026ab92b5a8b576568a5c3e10.js?body=1" for ::1 at 2019-08-07 11:07:33 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 11:07:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 16ms (Views: 0.7ms | ActiveRecord: 0.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:07:33 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-07 11:07:38 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.7ms) Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 11:07:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:07:39 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-07 11:07:40 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>14, "tour"=>{"id"=>14}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] Intro::TourHistory Load (0.3ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 14 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (2.1ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 14], ["touch_count", 1], ["created_at", "2019-08-07 03:07:40.582942"], ["updated_at", "2019-08-07 03:07:40.582942"]]  (5.5ms) commit transaction Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 8.4ms) Started POST "/intro/tours/record" for ::1 at 2019-08-07 11:07:41 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>11, "tour"=>{"id"=>11}} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]] Intro::TourHistory Load (0.6ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 11], ["touch_count", 1], ["created_at", "2019-08-07 03:07:41.860953"], ["updated_at", "2019-08-07 03:07:41.860953"]]  (5.6ms) commit transaction Completed 200 OK in 17ms (Views: 0.3ms | ActiveRecord: 7.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:07:43 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.2ms) Completed 200 OK in 50ms (Views: 47.3ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:07:44 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:07:44 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 11:07:49 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 11:07:55 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours", "tour"=>{}} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:07:56 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"qPLxL8ygaD+diUVfALtS0fyAWzyIid2nMrm1aYIYSM+eQje5zgmpYlYnBfQGjMynmekDCTDBjSGz0HrERztd1g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours", "query"=>""}, "ident"=>"intro/admin/tours#index-0beyl7", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"arbarbab", "image_url"=>"/uploads/intro/20190807/1565147269_pLpXe_yt.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:14:26 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.6ms) Completed 200 OK in 65ms (Views: 62.9ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-7f075a52dbe16a978bd3b9248fe482962f4b39422c59ec82520440bf102ee9aa.js?body=1" for ::1 at 2019-08-07 11:14:26 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:14:26 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:14:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 11:14:32 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:14:34 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"eVlOophJjHfakZOjmuoav3J/weFxikRobwR5UyhAyMVP6Yg0muBNKhE/0wic3YTJFxaZ1MnCFO7ubbb+7WPd3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"brabr", "image_url"=>"/uploads/intro/20190807/1565147672_O9f0pZhH.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:14:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"eVlOophJjHfakZOjmuoav3J/weFxikRobwR5UyhAyMVP6Yg0muBNKhE/0wic3YTJFxaZ1MnCFO7ubbb+7WPd3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"brabr", "image_url"=>"/uploads/intro/20190807/1565147672_O9f0pZhH.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"brab", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:15:53 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.5ms) Completed 200 OK in 58ms (Views: 56.9ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-0dc4e55681691169c1d22aface3e992d3811f391f323aacfd1e9ee89ca62dd65.js?body=1" for ::1 at 2019-08-07 11:15:53 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:15:54 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:15:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 11:15:56 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:15:58 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZfXH7v3D2GKMngIofC+HRQRA74gj8Ry8yOZ9c4vlL/1TRQF4/2oZP0cwQoN6GBkzYSm3vZu5TDpJj7LeTsY65A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565147756_le2Ru9OL.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:18:33 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZfXH7v3D2GKMngIofC+HRQRA74gj8Ry8yOZ9c4vlL/1TRQF4/2oZP0cwQoN6GBkzYSm3vZu5TDpJj7LeTsY65A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rbarba", "image_url"=>"/uploads/intro/20190807/1565147756_le2Ru9OL.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:18:35 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:19:35 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.7ms) Completed 200 OK in 58ms (Views: 56.8ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-316ff7a959004c0330f85e55046aea564563a3c5fc637f8c932bfd0b492a571e.js?body=1" for ::1 at 2019-08-07 11:19:35 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:19:36 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:19:36 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:19:40 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ACiVxEiSY54EysWB4iyP+zimkmeK3AaOoY2rkbwRTyw2mFNSSjuiw89khSrkGxGNXc/KUjKUVggg5GQ8eTJaNQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"rbarba", "content"=>"brabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:31:24 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (173.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (174.9ms) Completed 200 OK in 273ms (Views: 271.9ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/shepherd.self-a7bf6c3694fe57eeb9d2806af2693d85c3672727402f0ef40c2349400437fe97.js?body=1" for ::1 at 2019-08-07 11:31:25 +0800 Started GET "/assets/intro/shepherd.self-f64a79091e8579e514a17e7b6a5c8e7f8138ce65f20a4a5001fc744bd4fa7509.css?body=1" for ::1 at 2019-08-07 11:31:25 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:31:25 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:31:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:31:32 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"So/dQf3SikHjZ2OR5IcfDshN5l2jTIeQeLNxCYaFAM58PxvX/3tLHCjJIzrisIF4rSS+aBsE1xb52r6kQ6YV1w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:31:34 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (26.8ms) Completed 200 OK in 49ms (Views: 47.4ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:31:34 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:31:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:31:39 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"SyE07JR32k+k6reEGgjjv9Pe+RZnc4eT7sp/SGh/OcF9kfJ6lt4bEm9E9y8cP33JtrehI9871xVvo7DlrVws2A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:31:43 +0800 Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:33:27 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (97.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (98.8ms) Completed 200 OK in 114ms (Views: 112.5ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/shepherd.self-97dd75e3e007b41b9857ecf5dd5168cd7f88068bb46eff3cc438d9ab7eb6cbbb.css?body=1" for ::1 at 2019-08-07 11:33:27 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:33:27 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:33:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:33:33 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"+f1nAVw+7dOOPY3QokQKavUpp6Oo0hhL/GapObM7B7jPTaGXXpcsjkWTzXukc5QckED/lhCaSM19D2aUdhgSoQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"bab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:36:03 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (80.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (81.7ms) Completed 200 OK in 97ms (Views: 96.0ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-e8353b5d60e59ed2ccefc08cc21c9d991a85e729b350fc0cc4f742d5e5342fe4.css?body=1" for ::1 at 2019-08-07 11:36:03 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:36:03 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:36:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:36:07 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"90JbvONHnmG2I8fDH3qsbLAtoP0aw5JdnZbGduHdsDvB8p0q4e5fPH2Nh2gZTTIa1UT4yKKLwtsc/wnbJP6lIg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"rbarb", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 11:37:23 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.7ms) Completed 200 OK in 62ms (Views: 59.7ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 11:37:23 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 11:37:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 11:37:27 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"dU5cew67ExSDyS4ZKdKYu5zsIcVgZdArZrSVwJl0WGZD/prtDBLSSUhnbrIv5QbN+YV58NgtgK3n3VptXFdNfw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:17:59 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (41.4ms) Completed 200 OK in 66ms (Views: 65.1ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-385bedf1014b64f65e1c9c63ac7cc29de64c04187123e6abcbb2a6bf788b9b10.js?body=1" for ::1 at 2019-08-07 12:17:59 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:17:59 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:17:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:18:03 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"qqHyOcvNUyNv8KIjtLcPIArpaZqgU9UVaqaloceesdycETSvyWSSfqRe4oiygJFWb4AxrxgbhZPrz2oMAr2kxQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:18:10 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.4ms) Completed 200 OK in 59ms (Views: 56.9ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-858da6882b620abaa2145c31a89578c8a248627b56a4c9028b4b58b978e9659b.js?body=1" for ::1 at 2019-08-07 12:18:10 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:18:10 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:18:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:18:14 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"geOj3Sd8bFkaWvTVTu5mlbffhsoRc9Gg6+DphQOtT1m3U2VLJdWtBNH0tH5I2fjj0rbe/6k7gSZqiSYoxo5aQA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:19:50 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.9ms) Completed 200 OK in 56ms (Views: 55.4ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/shepherd.self-78e6cc183288e249563086d62b5ca40a2c9c5b6eb9c3f2c3ac1b523463b549fc.js?body=1" for ::1 at 2019-08-07 12:19:50 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:19:50 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:19:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:19:54 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"MJF3gk4TA8V+E1c88OHokrT2vXtFC+VlydTJKTyKf0sGIbEUTLrCmLW9F5f21nbk0Z/lTv1DteNIvQaE+alqUg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:20:07 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (49.0ms) Completed 200 OK in 71ms (Views: 69.2ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-2ab4f274c4ec90332e60fae5fce47e7cf6abfd81da7cc98c8075c5239197c99f.js?body=1" for ::1 at 2019-08-07 12:20:07 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:20:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:20:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:20:10 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"W0oPNeOPQS0MsrHYjotAVnP8Hmk8ZXtPWkxCI+snsntt+smj4SaAcMcc8XOIvN4gFpVGXIQtK8nbJY2OLgSnYg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"bra", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:20:19 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (44.8ms) Completed 200 OK in 72ms (Views: 69.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-aa57eb799b25f55840414c1c85b8bb4c8c35b48eff1a2cd112a5dc851da186aa.js?body=1" for ::1 at 2019-08-07 12:20:19 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:20:19 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:20:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:20:21 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (27.4ms) Completed 200 OK in 52ms (Views: 49.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:20:21 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:20:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:20:24 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"dFhhwmrRR2ImTrtOoqNHMJAvVRuUVUia39CoBai6We9C6KdUaHiGP+3g++WklNlG9UYNLiwdGBxeuWeobZlM9g==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"rbarb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:20:32 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (27.7ms) Completed 200 OK in 49ms (Views: 47.6ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:20:32 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:20:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:20:36 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"BVO5h7Z62Ce+78TCYKp8Y3pOnf/VGZ/6Dnmd/s28wRoz438RtNMZenVBhGlmneIVHyfFym1Rz3yPEFJTCJ/UAw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"rbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:24:31 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (1.0ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (55.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (57.5ms) Completed 200 OK in 85ms (Views: 81.6ms | ActiveRecord: 1.0ms) Started GET "/assets/intro/shepherd.self-89fd681ca7a4ab6312454fb7f8b8011b39e1bd511b6065a6c0a2f37f31f410bd.js?body=1" for ::1 at 2019-08-07 12:24:31 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:24:31 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:24:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:24:38 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"egYEMh90OiEPhy5BcvNFaZethGcO2KfOTH7pgg2hoEZMtsKkHd37fMQpbup0xNsf8sTcUraQ90jNFyYvyIK1Xw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrbb", "content"=>"brabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:25:35 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (42.0ms) Completed 200 OK in 60ms (Views: 58.7ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-27b590ff2cda3c7e5e1ef5b24f6a49e641a1726807a986080b4806f65032b06d.js?body=1" for ::1 at 2019-08-07 12:25:35 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:25:35 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:25:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:25:56 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ji+Ju3eXPchoRbABTJ2oLSKNZFcytFef01Lz0ndfymu4n08tdT78laPr8KpKqjZbR+Q8Yor8BxlSOzx/snzfcg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrbarabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:26:51 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.1ms) Completed 200 OK in 69ms (Views: 67.5ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-e1bac60327c12ec3c76c641cdfc985fd5e8453a1bd8260a17603dec4319fe8c4.js?body=1" for ::1 at 2019-08-07 12:26:51 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:26:52 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:26:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:27:21 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.7ms) Completed 200 OK in 67ms (Views: 65.4ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-5abc45426dd88ad80ccd8d2e1e6ef97750e95f252d4f946e5753f04ba5f870a5.js?body=1" for ::1 at 2019-08-07 12:27:21 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:27:21 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:27:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:27:24 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"fYK7Bfi9kA0Y8Xo3IQAk9f5HDEuB71qldWT/VT6mtQ1LMn2T+hRRUNNfOpwnN7qDmy5UfjmnCiP0DTD4+4WgFA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brbar", "content"=>"barba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:27:45 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"fYK7Bfi9kA0Y8Xo3IQAk9f5HDEuB71qldWT/VT6mtQ1LMn2T+hRRUNNfOpwnN7qDmy5UfjmnCiP0DTD4+4WgFA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brbar", "content"=>"barba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:28:12 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (46.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (48.0ms) Completed 200 OK in 74ms (Views: 72.5ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-332f632018764350ea4550571bae83ecd796527289948f8281ce78086ac93cba.js?body=1" for ::1 at 2019-08-07 12:28:12 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:28:12 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:28:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:28:22 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"rzX+sqmMm+Py9by5si+1uYz4B5ursw7gk3wgodD951GZhTgkqyVavjlb/BK0GCvP6ZFfrhP7XmYSFe8MFd7ySA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"brabrbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:28:41 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (33.5ms) Completed 200 OK in 53ms (Views: 51.3ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-a3356ae106a05235cc2e7fadfda1df7cf8a164939245d8331541ec44621f1f84.js?body=1" for ::1 at 2019-08-07 12:28:41 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:28:41 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:28:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:28:45 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"wZz97r/zkRq4ruCKWAGDbee6e3b6W5OB6ziMPk9Fq433LDt4vVpQR3MAoCFeNh0bgtMjQ0ITwwdqUUOTima+lA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:28:50 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"wZz97r/zkRq4ruCKWAGDbee6e3b6W5OB6ziMPk9Fq433LDt4vVpQR3MAoCFeNh0bgtMjQ0ITwwdqUUOTima+lA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:29:08 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (38.9ms) Completed 200 OK in 62ms (Views: 60.5ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-6670afeede2474cebb9820225742d9c9a0990903d9d9c715738bc663f0613c6e.js?body=1" for ::1 at 2019-08-07 12:29:08 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:29:08 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:29:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:29:12 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ylGea8H2q2pqa+6ojL/aUY8Ot0l2qNmClmvcVxYy+RX84Vj9w19qN6HFrgOKiEQn6mfvfM7giQQXAhP60xHsDA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"rbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:29:16 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ylGea8H2q2pqa+6ojL/aUY8Ot0l2qNmClmvcVxYy+RX84Vj9w19qN6HFrgOKiEQn6mfvfM7giQQXAhP60xHsDA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"rbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:29:45 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (16.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (106.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (109.8ms) Completed 200 OK in 139ms (Views: 136.6ms | ActiveRecord: 0.6ms) Started GET "/assets/intro/shepherd.self-05c15d54a36c396334aea191ec5a6cb28a56c0dbf17a408d3be8dfbb5c6d9e6f.js?body=1" for ::1 at 2019-08-07 12:29:46 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:29:46 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:29:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"AY7ov6+nZvXnp6/9X+cfreDrv/di/78U9Fcnpaky6Hc3Pi4prQ6nqCwJ71ZZ0IHbhYLnwtq375J1PugIbBH9bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"br", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:30:03 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (41.6ms) Completed 200 OK in 64ms (Views: 61.8ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-aea65d328b4e3729b7728000e1545eeac157b11dcd9565939e31e24bd83a353a.js?body=1" for ::1 at 2019-08-07 12:30:03 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:30:03 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:30:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:30:09 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"n59N6OxEbnbbLPQnMzkuy9JStCr5np0pIs+IWiQWMEupL4t+7u2vKxCCtIw1DrC9tzvsH0HWza+jpkf34TUlUg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"rbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:30:20 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (31.3ms) Completed 200 OK in 55ms (Views: 53.1ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:30:21 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:30:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:30:27 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"NuF8+uPJTHapZknm05aO3Tx0tP2lWglf22b948oyF2IAUbps4WCNK2LICU3VoRCrWR3syB0SWdlaDzJODxECew==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrba", "content"=>"brabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:30:31 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (31.5ms) Completed 200 OK in 54ms (Views: 51.8ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:30:31 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:30:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:30:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"5KrinEtCXfralP9B3HYOLNvMuQLV9tp8DsRGwr6aVw3SGiQKSeucpxE6v+raQZBavqXhN22+ivqPrYlve7lCFA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brabrabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:33:14 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (39.9ms) Completed 200 OK in 68ms (Views: 57.5ms | ActiveRecord: 1.3ms) Started GET "/assets/intro/shepherd.self-23e1e8d25076c4bd4a8ea9fad97bff4031aaa5038f4818e0536fba3e9fa3e368.js?body=1" for ::1 at 2019-08-07 12:33:14 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:33:15 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:33:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 1.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:33:20 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"dcYQhdXqR3kPbVSHY8UAAMUmmEne6GxbybGE0mTUhydDdtYT10OGJMTDFCxl8p52oE/AfGagPN1I2Et/ofeSPg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:33:25 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"dcYQhdXqR3kPbVSHY8UAAMUmmEne6GxbybGE0mTUhydDdtYT10OGJMTDFCxl8p52oE/AfGagPN1I2Et/ofeSPg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:34:14 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (26.1ms) Completed 200 OK in 50ms (Views: 47.5ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:34:14 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:34:14 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:34:38 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (33.7ms) Completed 200 OK in 58ms (Views: 55.5ms | ActiveRecord: 0.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:34:38 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:34:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:35:35 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"rX8f8vrbKo2NGXLrzqja1GmczQJcGMR/xHCOoPLCtdqbz9lk+HLr0Ea3MkDIn0SiDPWVN+RQlPlFGUENN+Ggww==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"barbr", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:36:41 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (43.7ms) Completed 200 OK in 66ms (Views: 64.0ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-e72763797717dc7929bf924996f6bd1cbe1d856d51518097e2742ae434c5b5ce.js?body=1" for ::1 at 2019-08-07 12:36:42 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:36:42 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:36:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:36:46 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"iTBem9q5pkRHWnkJZc6ZFpoI/PlVWfbjARetIwbaGdS/gJgN2BBnGYz0OaJj+Qdg/2GkzO0RpmWAfmKOw/kMzQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:46:13 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.8ms) Completed 200 OK in 70ms (Views: 67.2ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd/base.self-3b4deabe26f7ef329acde37439399136459e35a1a024eb676669312eb5addafb.css?body=1" for ::1 at 2019-08-07 12:46:13 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:46:13 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:46:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:50:20 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"61TR8DRdBYXtB9oLJdoTUqy0XUnLyjv3f3kF1hApJ7/d5BdmNvTE2CapmqAj7Y0kyd0FfHOCa3H+EMp71Qoypg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:50:29 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (51.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (53.6ms) Completed 200 OK in 74ms (Views: 73.1ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd/base.self-932b87afdaea0cd21436e61259d322fa74dc9b62ab7f6a9b320dab06cf7e7df8.css?body=1" for ::1 at 2019-08-07 12:50:29 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:50:29 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:50:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:50:33 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"bm66F0wyO8oSVDTvVsmWCFpk5ajQKmY0VvqL5pAuQIBY3nyBTpv6l9n6dERQ/gh+Pw29nWhiNrLXk0RLVQ1VmQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:53:17 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (44.0ms) Completed 200 OK in 63ms (Views: 61.6ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd/base.self-42fea42bd1e2f2f1033ace3a7564b5c6f8b02398e3afc271b4061794fef9f85a.css?body=1" for ::1 at 2019-08-07 12:53:17 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:53:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:53:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:53:20 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"V90f4xa/R0tqONIM56QEyR4OQA8t+XFKUTZgsV6Wxw9hbdl1FBaGFqGWkqfhk5q/e2cYOpWxIczQX68cm7XSFg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:56:23 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.9ms) Completed 200 OK in 60ms (Views: 58.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd/base.self-2113993871a0aa96307ce4d053e13cd9d7270dc372d3c8399f8534705b9318a7.css?body=1" for ::1 at 2019-08-07 12:56:23 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:56:23 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:56:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:56:32 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IsyYprgkMdL4yltQ6Qbhbg0i58DrduIYb3V7ocJZeNwUfF4wuo3wjzNkG/vvMX8YaEu/9VM+sp7uHLQMB3ptxQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 13ms (Views: 9.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 12:59:11 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (49.0ms) Completed 200 OK in 71ms (Views: 69.6ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd/base.self-5ce62f8852e4b3efa5cfb49b33b2c8727d314059a1d4189c395806c99b863a9a.css?body=1" for ::1 at 2019-08-07 12:59:11 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 12:59:11 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 12:59:11 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 12:59:15 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"BWtFKR07nWKut7fwUwL/YJv29wSD0H9p74YoZaPB+mIz24O/H5JcP2UZ91tVNWEW/p+vMTuYL+9u7+fIZuLvew==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:07:33 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (46.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (47.7ms) Completed 200 OK in 65ms (Views: 64.4ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/shepherd.self-fe5528b75da699daba94d446301e2f6637d31992d881e14f1db8f185c96c2eea.js?body=1" for ::1 at 2019-08-07 13:07:33 +0800 Started GET "/assets/intro/shepherd/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-07 13:07:33 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:07:33 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:07:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:07:36 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"NgcGrhJfJZc8ZznvBxWTrIvcsaDsPAOV1DPlRsyugC8At8A4EPbkyvfJeUQBIg3a7rXplVR0UxNVWirrCY2VNg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"bra", "content"=>"brbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:07:44 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (29.0ms) Completed 200 OK in 51ms (Views: 49.8ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:07:45 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:07:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:07:49 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"tQvsKw8Y4ZuDjEDY68iCcfYWVarHhqMSuOXAjX34Z3yDuyq9DbEgxkgiAHPt/xwHk38Nn3/O85Q5jA8guNtyZQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrab", "content"=>"bbrabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:07:57 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"tQvsKw8Y4ZuDjEDY68iCcfYWVarHhqMSuOXAjX34Z3yDuyq9DbEgxkgiAHPt/xwHk38Nn3/O85Q5jA8guNtyZQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrab", "content"=>"bbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:08:18 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (25.6ms) Completed 200 OK in 48ms (Views: 46.1ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:08:18 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:08:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:08:22 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kbc7tbBxESREPcjf5/+XcQre6ZxPvS78qnVKYIxj37anB/0jstjQeY+TiHThyAkHb7exqff1fnorHIXNSUDKrw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"bbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabrbbrabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:12:42 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (37.7ms) Completed 200 OK in 57ms (Views: 56.1ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/shepherd.self-bc0bd02737d379224709c4710ef97bd978c077f2b218ead1e6f116816ec7b028.js?body=1" for ::1 at 2019-08-07 13:12:42 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:12:42 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:12:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:12:57 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"GnlgUCpJd2ZieLsLSrD0bgJ/mHDuOWZ3EU29cADOScQsyabGKOC2O6nW+6BMh2oYZxbARVZxNvGQJHLdxe1c3Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab\r\n\r\nbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:14:16 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"GnlgUCpJd2ZieLsLSrD0bgJ/mHDuOWZ3EU29cADOScQsyabGKOC2O6nW+6BMh2oYZxbARVZxNvGQJHLdxe1c3Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab\r\n\r\nbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab]]]\r\n\r\nbrabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab\r\n\r\nbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab\r\n\r\nbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab\r\n\r\nbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab\r\nbrabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab\r\n\r\nbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab\r\n\r\nbrabbab brabbab brabbabbrabbab brabbab brabbabbrabbab brabbab brabbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:14:42 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (25.0ms) Completed 200 OK in 44ms (Views: 43.0ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:14:43 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:14:43 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:14:56 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"GB7mll7mhjcPHisgIV5TCkKilvMDtnisyOD0Vzq64PcuriAAXE9HasSwa4snac18J8vOxrv+KCpJiTv6/5n17g==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brarb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:21:59 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (54.6ms) Completed 200 OK in 72ms (Views: 71.3ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd.self-93670cd276838d7a818e2b4e2ee37a984e2ae7ed46a51e0061a527b0acc38b4b.js?body=1" for ::1 at 2019-08-07 13:22:00 +0800 Started GET "/assets/intro/shepherd/base.self-f9b17229e2ba363b90bae7761dba7e090fd9babaa358df5d949583c5f5c7ee19.css?body=1" for ::1 at 2019-08-07 13:22:00 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:22:00 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:22:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:22:04 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IXJhjRFIIxbp93ouvJGtKU8de63v4p/6OcW+dAznj6MXwqcbE+HiSyJZOoW6pjNfKnQjmFeqz3y4rHHZycSaug==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:22:12 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IXJhjRFIIxbp93ouvJGtKU8de63v4p/6OcW+dAznj6MXwqcbE+HiSyJZOoW6pjNfKnQjmFeqz3y4rHHZycSaug==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:22:15 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.6ms) Completed 200 OK in 45ms (Views: 43.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:22:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:22:15 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:22:23 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"QB5Leig4niYqiaY1PUx7345guwoTaRGASQ/PjnrybIJ2ro3sKpFfe+En5p47e+Wp6wnjP6shQQbIZgAjv9F5mw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:22:50 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"QB5Leig4niYqiaY1PUx7345guwoTaRGASQ/PjnrybIJ2ro3sKpFfe+En5p47e+Wp6wnjP6shQQbIZgAjv9F5mw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrbrabr", "content"=>"brabbrabbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:27:37 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (51.1ms) Completed 200 OK in 75ms (Views: 74.4ms | ActiveRecord: 0.1ms) Started GET "/assets/intro/shepherd/base.self-2e2bc8a7529d5e5a2f5e3b76f01e3b1f6a611a3b352ac9ee2bc309b066881570.css?body=1" for ::1 at 2019-08-07 13:27:37 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:27:37 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:27:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:27:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"gYtrkEBCPOC7meSUWuk4GizW13WNhbt49KnQsJXZJ0y3O60GQuv9vXA3pD9c3qZsSb+PQDXN6/51wB8dUPoyVQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:29:17 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (62.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (64.0ms) Completed 200 OK in 88ms (Views: 86.3ms | ActiveRecord: 0.5ms) Started GET "/assets/intro/shepherd.self-135c292dc2e26175b0c1ffd13f67ab708be33366640f4bcbcf8619f5802098a0.js?body=1" for ::1 at 2019-08-07 13:29:17 +0800 Started GET "/assets/intro/shepherd/base.self-9c5a7447e1ffb3155172102343f4d7ad7d69990a97b1f0db10af01284ea97407.css?body=1" for ::1 at 2019-08-07 13:29:17 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:29:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:29:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:29:25 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"mEi37FnuQbueCFY5SknuoqA/VbbrbmWNWNBkJHWQIYCu+HF6W0eA5lWmFpJMfnDUxVYNg1MmNQvZuauJsLM0mQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:31:20 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (48.9ms) Completed 200 OK in 67ms (Views: 65.5ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd/base.self-42d937ab6efe447360f3a23c6ea6793e2a250ffa6be7183034422328640ad212.css?body=1" for ::1 at 2019-08-07 13:31:20 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:31:20 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:31:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:31:23 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"wQ2xS7cvoGxjJW6IA9I3h/MWrDT2WXPHPes8bFHYSG/3vXfdtYZhMaiLLiMF5anxln/0AU4RI0G8gvPBlPtddg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 13ms (Views: 8.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:37:20 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (56.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (58.0ms) Completed 200 OK in 75ms (Views: 74.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/shepherd/base.self-0398f7a8e0a210c710f63009304fa25208cc813c6f14bf52428af4df20280755.css?body=1" for ::1 at 2019-08-07 13:37:20 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:37:20 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:37:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:37:27 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"d0avlgQgVuRO0qywBy77H/Z6PMpGI1mhsc98sSeXLo1B9mkABomXuYV87BsBGWVpkxNk//5rCScwprMc4rQ7lA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:38:51 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (49.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (51.2ms) Completed 200 OK in 73ms (Views: 70.9ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd/base.self-20c50e767945ff2656e0f17acda8523d680ba64170d6841a05fd5c567e86f17e.css?body=1" for ::1 at 2019-08-07 13:38:51 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:38:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:38:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:44:33 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"0lFArFcowDCX/Q1jnzTdH4kpyMzzhhnI8vAd458sfobk4YY6VYEBbVxTTciZA0Np7ECQ+UvOSU5zmdJOWg9rnw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 13:48:51 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (43.6ms) Completed 200 OK in 75ms (Views: 73.1ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-6cccaf7f7b64bcbb3b4b9dc61e65f30ba414ab56164457a5dff2f019fbf90f2d.js?body=1" for ::1 at 2019-08-07 13:48:51 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:48:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 13:48:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 13:48:55 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Uh5GsZOmCHQ9kzOHU+VtWtNFcvbOqGxwg/n12MpBbm9kroAnkQ/JKfY9cyxV0vMstiwqw3bgPPYCkDp1D2J7dg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 13:50:15 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.8ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (49.2ms) Completed 200 OK in 69ms (Views: 66.9ms | ActiveRecord: 1.0ms) Started GET "/assets/intro/shepherd/base.self-6159f9771a36cdea0c8affdbd86c289182445ea63c1ab18b553950eca679d2bb.css?body=1" for ::1 at 2019-08-07 13:50:15 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 13:50:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:50:15 +0800 Intro::TourHistory Load (2.5ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories"  (0.1ms) begin transaction SQL (1.7ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 7]]  (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 8]]  (8.3ms) commit transaction Started GET "/intro/admin/tours" for ::1 at 2019-08-07 13:51:22 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.3ms) Completed 200 OK in 32ms (Views: 30.9ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 13:51:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (2.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 2.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:51:22 +0800 Started POST "/intro/tours/record" for ::1 at 2019-08-07 13:51:26 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>14, "tour"=>{"id"=>14}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 14 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (1.2ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 14], ["touch_count", 1], ["created_at", "2019-08-07 05:51:26.224814"], ["updated_at", "2019-08-07 05:51:26.224814"]]  (3.9ms) commit transaction Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 8.0ms) Started POST "/intro/tours/record" for ::1 at 2019-08-07 13:51:28 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>11, "tour"=>{"id"=>11}} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]] Intro::TourHistory Load (0.3ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 11], ["touch_count", 1], ["created_at", "2019-08-07 05:51:28.503026"], ["updated_at", "2019-08-07 05:51:28.503026"]]  (7.0ms) commit transaction Completed 200 OK in 16ms (Views: 0.3ms | ActiveRecord: 8.2ms) Started GET "/intro/admin/tours/14/edit" for ::1 at 2019-08-07 13:51:30 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (30.3ms) Completed 200 OK in 69ms (Views: 66.0ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 13:51:30 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14%2Fedit" for ::1 at 2019-08-07 13:51:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/14/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 13:56:48 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"3EtydlZ/bOAeApCdrFmWsb7NGmb/sCecwo28Qe2fF+zq+7TgVNatvdWs0DaqbgjH26RCU0f4dxpD5HPsKLwC9Q==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\noverlay_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 05:56:48.788109"], ["id", 14]]  (7.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.8ms) Completed 200 OK in 82ms (Views: 31.0ms | ActiveRecord: 8.1ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 13:56:55 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c3mAkxc6mM51recVcHIEMtfgrx940PSrba+cMBWWc9VFyUYFFZNZk74Dp752RZpEson3KsCYpC3sxlOd0LVmzA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "overlay_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\noverlay_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 05:56:55.447791"], ["id", 14]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (9.8ms) Completed 200 OK in 45ms (Views: 26.0ms | ActiveRecord: 7.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 13:57:50 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c3mAkxc6mM51recVcHIEMtfgrx940PSrba+cMBWWc9VFyUYFFZNZk74Dp752RZpEson3KsCYpC3sxlOd0LVmzA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "overlay_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 05:57:50.372469"], ["id", 14]]  (3.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (102831.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (102833.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (102835.4ms) Completed 200 OK in 102882ms (Views: 102866.7ms | ActiveRecord: 4.4ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 13:59:36 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c3mAkxc6mM51recVcHIEMtfgrx940PSrba+cMBWWc9VFyUYFFZNZk74Dp752RZpEson3KsCYpC3sxlOd0LVmzA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "overlay_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 05:59:36.683248"], ["id", 14]]  (8.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.4ms) Completed 200 OK in 57ms (Views: 31.7ms | ActiveRecord: 9.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 13:59:43 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jIfICUgYGnR61lYL8R5tkyn65ZOh4QpUGzITm2JJlji6Nw6fSrHbKbF4FqD3KfPlTJO9phmpWtKaW9w2p2qDIQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "overlay_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 05:59:43.943300"], ["id", 14]]  (5.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.7ms) Completed 200 OK in 58ms (Views: 37.6ms | ActiveRecord: 6.0ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:00:36 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"H8X+ILGaE86H1eikGH+ZhIFf4T9zNVfgVoM8Gc3fFOMpdTi2szPSk0x7qA8eSAfy5Da5Cst9B2bX6vO0CPwB+g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "overlay_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.7ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:00:57.653441"], ["id", 14]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.8ms) Completed 200 OK in 20855ms (Views: 30.6ms | ActiveRecord: 9.0ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:01:10 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"m8/GjIcHNHdwZ6UIWL8yIE6Z+oj9Yo14y7oC3VEHAiStfwAaha71KrvJ5aNeiKxWK/CivUUq3f5K081wlCQXPQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.4ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:01:27.327888"], ["id", 14]]  (5.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.8ms) Completed 200 OK in 17053ms (Views: 433.7ms | ActiveRecord: 6.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:01:32 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UAhQnZzbd7Mn9+wtiLLSEw0NWHkgNUXck+QxHiJKsuhmuJYLnnK27uxZrIaOhUxlaGQATJh9FVoSjf6z52mn8Q==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.4ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:01:43.645526"], ["id", 14]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.6ms) Completed 200 OK in 10721ms (Views: 25.7ms | ActiveRecord: 8.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:01:57 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"R5tHQavi+WJ8zqRcwK+QJgOFrfjpk4wMOIhGziTwKuBxK4HXqUs4P7dg5PfGmA5QZuz1zVHb3Iq54Ylj4dM/+Q==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.3ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:02:10.312505"], ["id", 14]]  (5.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.8ms) Completed 200 OK in 12465ms (Views: 38.6ms | ActiveRecord: 6.7ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:02:14 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/ehBnIsGetQtUH98S21bvjBXzKnWBMIV0XDvsYkj8zzLWIcKia+7ieb+P9dNWsXIVT6UnG5MkpNQGSAcTADmJQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.4ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:02:18.741274"], ["id", 14]]  (6.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.5ms) Completed 200 OK in 3931ms (Views: 39.5ms | ActiveRecord: 7.2ms) Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."id" DESC LIMIT 1 Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."id" DESC LIMIT 1 Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:02:42 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"E9q981uXQlDRKSJDLReQA+UtAAt1mhorumG3v0OErPMlantlWT6DDRqHYugrIA51gERYPs3SSq07CHgShqe56g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.4ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\noverlay_visible: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:02:53.346246"], ["id", 14]]  (7.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.5ms) Completed 200 OK in 10401ms (Views: 36.5ms | ActiveRecord: 8.9ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:04:31 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"E9q981uXQlDRKSJDLReQA+UtAAt1mhorumG3v0OErPMlantlWT6DDRqHYugrIA51gERYPs3SSq07CHgShqe56g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.3ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:04:41.483839"], ["id", 14]]  (7.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.0ms) Completed 200 OK in 9577ms (Views: 34.1ms | ActiveRecord: 9.0ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:04:48 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"dEWFHXCs671xQhJIPypFiIrv+7KvRYy63t3abkdviTJC9UOLcgUq4LrsUuM5Hdv+74ajhxcN3DxftBXDgkycKw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "overlay_visible"=>"1", "btn_visible"=>"0", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\noverlay_visible: '1'\nbtn_visible: '0'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:04:48.113850"], ["id", 14]]  (5.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.0ms) Completed 200 OK in 54ms (Views: 28.8ms | ActiveRecord: 6.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:04:54 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"aV9VkJ78eCPfyel6v8o/j8v1RD2sczy2NqWf9YG1I0Jf75MGnFW5fhRnqdG5/aH5rpwcCBQ7bDC3zFBYRJY2Ww==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"0", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '0'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:04:54.738795"], ["id", 14]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.6ms) Completed 200 OK in 68ms (Views: 48.4ms | ActiveRecord: 7.8ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:04:58 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:04:58.878804"], ["id", 14]]  (5.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (10.6ms) Completed 200 OK in 42ms (Views: 25.4ms | ActiveRecord: 5.7ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:16:44 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:16:44.882122"], ["id", 14]]  (5.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.9ms) Completed 200 OK in 71ms (Views: 37.6ms | ActiveRecord: 6.7ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:17:48 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:17:48.965687"], ["id", 14]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.9ms) Completed 200 OK in 87ms (Views: 50.6ms | ActiveRecord: 8.2ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:18:19 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:18:19.587157"], ["id", 14]]  (3.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.6ms) Completed 200 OK in 58ms (Views: 32.8ms | ActiveRecord: 4.4ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:18:55 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.3ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:18:55.016193"], ["id", 14]]  (9.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.0ms) Completed 200 OK in 57ms (Views: 33.2ms | ActiveRecord: 10.1ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:23:51 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:23:51.135838"], ["id", 14]]  (8.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.5ms) Completed 200 OK in 62ms (Views: 31.4ms | ActiveRecord: 9.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:26:27 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:26:27.542822"], ["id", 14]]  (8.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.5ms) Completed 200 OK in 60ms (Views: 30.6ms | ActiveRecord: 9.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:27:37 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:27:37.566883"], ["id", 14]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.0ms) Completed 200 OK in 77ms (Views: 56.9ms | ActiveRecord: 7.7ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:28:50 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:28:50.556812"], ["id", 14]]  (6.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.9ms) Completed 200 OK in 68ms (Views: 46.9ms | ActiveRecord: 6.7ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:30:20 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I8b7IvZqZiMDraWHn3qiI1nUfpea+iYdk6ITjJwOlc0Vdj209MOnfsgD5SyZTTxVPL0moiKydpsSy9whWS2A1A==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:30:20.839191"], ["id", 14]]  (7.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.6ms) Completed 200 OK in 68ms (Views: 37.7ms | ActiveRecord: 8.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:30:27 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BZya/nKqMXP9AZgY5n4VhU3gC8XoD+TdSA/9HozidWEzLFxocAPwLjav2LPgSYvzKIlT8FBHtFvJZjKzScFgeA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"0", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '0'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:30:27.653735"], ["id", 14]]  (8.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.6ms) Completed 200 OK in 58ms (Views: 34.4ms | ActiveRecord: 9.0ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:30:33 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"y936D73lYyMnIAyQe5GOnZHlJOVJdh+pHHeQ0jTmu4L9bTyZv0yifuyOTDt9phDr9Ix80PE+Ty+dHl9/8cWumw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:30:33.962453"], ["id", 14]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.1ms) Completed 200 OK in 58ms (Views: 34.5ms | ActiveRecord: 7.4ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:31:20 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZxD1oGWrzLkSt3V/stn/aKs2NoXqveKweZEODp+gkTpRoDM2ZwIN5NkZNdS07mEezl9usFL1sjb4+MGjWoOEIw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:31:20.618540"], ["id", 14]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.4ms) Completed 200 OK in 71ms (Views: 36.6ms | ActiveRecord: 7.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:31:32 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e4md48WfFQDkhjdaYhZ9FBBVzdKDlO9QxSAlE7fGOspNOVt1xzbUXS8od/FkIeNidTyV5zvcv9ZESeq+cuUv0w==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:31:32.405802"], ["id", 14]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (20.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.6ms) Completed 200 OK in 69ms (Views: 42.2ms | ActiveRecord: 7.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:31:48 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e4md48WfFQDkhjdaYhZ9FBBVzdKDlO9QxSAlE7fGOspNOVt1xzbUXS8od/FkIeNidTyV5zvcv9ZESeq+cuUv0w==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:31:48.076214"], ["id", 14]]  (9.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (21.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.7ms) Completed 200 OK in 78ms (Views: 43.6ms | ActiveRecord: 9.8ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:32:06 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e4md48WfFQDkhjdaYhZ9FBBVzdKDlO9QxSAlE7fGOspNOVt1xzbUXS8od/FkIeNidTyV5zvcv9ZESeq+cuUv0w==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:32:06.708737"], ["id", 14]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (30.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (43.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (46.7ms) Completed 200 OK in 104ms (Views: 69.0ms | ActiveRecord: 7.9ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:32:16 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"B5+ak0yXJRO9lxgXR8uOA60X8dTMo3Mr5a4Mwmy997QxL1wFTj7kTnY5WLxB/BB1yH6p4XTrI61kx8NvqZ7irQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:32:16.836997"], ["id", 14]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.6ms) Completed 200 OK in 67ms (Views: 38.7ms | ActiveRecord: 8.1ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:32:59 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"B5+ak0yXJRO9lxgXR8uOA60X8dTMo3Mr5a4Mwmy997QxL1wFTj7kTnY5WLxB/BB1yH6p4XTrI61kx8NvqZ7irQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:32:59.181851"], ["id", 14]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (12.5ms) Completed 200 OK in 56ms (Views: 30.8ms | ActiveRecord: 6.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:33:03 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"6OqlO7K3aiZpo2a+FqzPdI7c9gUgMubPocMud+h3E5XeWmOtsB6re6INJhUQm1EC67WuMJh6tkkgquHaLVQGjA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n fixed_placement: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:33:03.926028"], ["id", 14]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.8ms) Completed 200 OK in 54ms (Views: 36.9ms | ActiveRecord: 5.8ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:33:07 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7Mplp0UPZ+FZgQGzPnMUkCVFhTyDvttQLYh49uYU3ZNA+8An738wk7IRK3KzlIkJfxOIUpGq+vB3+5OHrtGbw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n fixed_placement: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n fixed_placement: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:33:07.878450"], ["id", 14]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.2ms) Completed 200 OK in 68ms (Views: 46.5ms | ActiveRecord: 7.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:33:38 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"e7Mplp0UPZ+FZgQGzPnMUkCVFhTyDvttQLYh49uYU3ZNA+8An738wk7IRK3KzlIkJfxOIUpGq+vB3+5OHrtGbw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "fixed_placement"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:33:38.720916"], ["id", 14]]  (3.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.8ms) Completed 200 OK in 60ms (Views: 36.1ms | ActiveRecord: 4.7ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:33:42 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"IxQNv2JLCP/LOdvOWiC9OSWUSzBPdLdbn5VO6GrMEDIVpMspYOLJogCXm2VcFyNPQP0TBfc8590e/IFFr+8FKw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "fixed_placement"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "fixed_placement"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n fixed_placement: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n fixed_placement: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:33:42.797335"], ["id", 14]]  (8.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (16.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.1ms) Completed 200 OK in 79ms (Views: 45.4ms | ActiveRecord: 9.4ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:34:24 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"U4oBM/8gMrSHAJE/qAxY+qXOVSV+B4m8RXdhPt+T8TtlOsel/Ynz6Uyu0ZSuO8aMwKcNEMZP2TrEHq6TGrDkIg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:34:24.767679"], ["id", 14]]  (6.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.3ms) Completed 200 OK in 63ms (Views: 39.9ms | ActiveRecord: 6.9ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:34:29 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"i8nvfyZ3oXOKuVpsNhxCYt2gEYJu51C3vwr8fW0cbfe9eSnpJN5gLkEXGscwK9wUuMlJt9avADE+YzPQqD947g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:34:29.102079"], ["id", 14]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.6ms) Completed 200 OK in 64ms (Views: 44.0ms | ActiveRecord: 7.3ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:35:43 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"i8nvfyZ3oXOKuVpsNhxCYt2gEYJu51C3vwr8fW0cbfe9eSnpJN5gLkEXGscwK9wUuMlJt9avADE+YzPQqD947g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:35:43.739355"], ["id", 14]]  (8.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.7ms) Completed 200 OK in 75ms (Views: 40.1ms | ActiveRecord: 9.2ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:35:47 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c899rsrqwRAn3/7mNOCCMnFo5GRagMz15Ix2tjgclwtFf7s4yEMATexxvk0y1xxEFAG8UeLInHNl5bkb/T+CEg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:35:47.932657"], ["id", 14]]  (8.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (9.7ms) Completed 200 OK in 49ms (Views: 25.4ms | ActiveRecord: 9.2ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:35:51 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KIS0plqK5OpAH0cjT5zc66DpBQXji6hYYKA5GOt/BnEeNHIwWCMlt4uxB4hJq0KdxYBdMFvD+N7hyfa1LlwTaA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:35:51.237784"], ["id", 14]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (13.6ms) Completed 200 OK in 54ms (Views: 34.3ms | ActiveRecord: 5.9ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:35:55 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0uCaWeHStx4qTW0MqNmZ6ms+pRzn2ZKGvQyopgwwfXjkUFzP43t2Q+HjLaeu7gecDlf9KV+RwgA8ZWcLyRNoYQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:35:55.575191"], ["id", 14]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.9ms) Completed 200 OK in 53ms (Views: 32.7ms | ActiveRecord: 5.9ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:35:59 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WsQhBY1TEjtVicmxvONY6PCEJjxP/+4M+l54Oi2VRZhsdOeTj/rTZp4niRq61Maele1+Cfe3vop7N7eX6LZQgQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:35:59.376128"], ["id", 14]]  (8.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (14.5ms) Completed 200 OK in 54ms (Views: 30.5ms | ActiveRecord: 9.1ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:36:27 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WsQhBY1TEjtVicmxvONY6PCEJjxP/+4M+l54Oi2VRZhsdOeTj/rTZp4niRq61Maele1+Cfe3vop7N7eX6LZQgQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:36:27.593514"], ["id", 14]]  (3.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.9ms) Completed 200 OK in 63ms (Views: 35.8ms | ActiveRecord: 4.8ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:36:33 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"5KHFIgveBT/S5lFoVHV6j2vIrpmGqpsrFtAzzv8JvtDSEQO0CXfEYhlIEcNSQuT5DqH2rD7iy62XufxjOiqryQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:36:33.543263"], ["id", 14]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.1ms) Completed 200 OK in 61ms (Views: 35.1ms | ActiveRecord: 7.8ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:36:41 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"k8mqfXUvWJnKmmCM1jkYL3wH1SQvpXYjRIExGx2oWqyleWzrd4aZxAE0ICfQDoZZGW6NEZftJqXF6P622ItPtQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:36:41.740927"], ["id", 14]]  (8.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.5ms) Completed 200 OK in 82ms (Views: 55.5ms | ActiveRecord: 9.2ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:37:35 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"k8mqfXUvWJnKmmCM1jkYL3wH1SQvpXYjRIExGx2oWqyleWzrd4aZxAE0ICfQDoZZGW6NEZftJqXF6P622ItPtQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:37:35.867731"], ["id", 14]]  (5.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (21.3ms) Completed 200 OK in 63ms (Views: 39.9ms | ActiveRecord: 5.9ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:37:39 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1ahcUky7Q5jesQ72SZTZhLuGh2n7/piw7OlsrFUtaCzjGJrEThKCxRUfTl1Po0fy3u/fXEO2yDZtgKMBkA59NQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:37:39.556789"], ["id", 14]]  (6.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (25.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (28.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (30.4ms) Completed 200 OK in 73ms (Views: 46.6ms | ActiveRecord: 7.2ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:38:10 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"lT0+fHwshMxk/CBTAYeH1FWRDLlQcEXV6s1+B24MZ/ujjfjqfoVFka9SYPgHsBmiMPhUjOg4FVNrpLGqqy9y4g==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:38:10.602948"], ["id", 14]]  (6.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (47.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (50.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (52.3ms) Completed 200 OK in 104ms (Views: 69.3ms | ActiveRecord: 6.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:39:42 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"X3Vuj6SpkII7vqgzZ4LUc/DqnTs/31U+6OjfFtt0krppxagZpgBR3/AQ6JhhtUoFlYPFDoeXBbhpgRC7HleHow==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:39:42.163428"], ["id", 14]]  (8.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.3ms) Completed 200 OK in 61ms (Views: 35.0ms | ActiveRecord: 9.2ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 14:40:43 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"5EXaZvQcMJySGI3B9bx/jRC8hhgs9x19Luhn/fjgUh3S9Rzw9rXxwVm2zWrzi+H7ddXeLZS/TfuvgahQPcNHBA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 14:40:46 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"5EXaZvQcMJySGI3B9bx/jRC8hhgs9x19Luhn/fjgUh3S9Rzw9rXxwVm2zWrzi+H7ddXeLZS/TfuvgahQPcNHBA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:41:40 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"X3Vuj6SpkII7vqgzZ4LUc/DqnTs/31U+6OjfFtt0krppxagZpgBR3/AQ6JhhtUoFlYPFDoeXBbhpgRC7HleHow==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:41:40.105323"], ["id", 14]]  (7.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.5ms) Completed 200 OK in 63ms (Views: 39.0ms | ActiveRecord: 7.5ms) Started GET "/intro/admin/tours/14/edit" for ::1 at 2019-08-07 14:41:53 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (41.4ms) Completed 200 OK in 84ms (Views: 82.0ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14%2Fedit" for ::1 at 2019-08-07 14:41:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/14/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 22ms (Views: 0.4ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 14:41:53 +0800 Started GET "/intro/admin/tours/14" for ::1 at 2019-08-07 14:42:02 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (35.2ms) Completed 200 OK in 58ms (Views: 56.2ms | ActiveRecord: 0.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 14:42:02 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:42:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:45:10 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"78dtmf+tcuvQ5m/pVrdAo8eGkiJrPiw76MaG+aZeSHbZd6sP/QSzthtIL0JQgN7Vou/KF9N2fL1pr0lUY31dbw==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:45:10.431091"], ["id", 14]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (28.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (31.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (43.3ms) Completed 200 OK in 98ms (Views: 62.5ms | ActiveRecord: 8.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 14:45:10 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:45:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 23ms (Views: 0.6ms | ActiveRecord: 1.4ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:45:27 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0dj4RdGCq2Wdu/XDJWwX/OaIZif1xFHS+Y+ZtH3nkiHnaD7T0ytqOFYVtWgjW4mKg+E+Ek2MAVR45lYZuMSHOA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.4ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:46:18.006826"], ["id", 14]]  (17.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (22.9ms) Completed 200 OK in 50720ms (Views: 39.6ms | ActiveRecord: 18.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:46:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 17ms (Views: 0.2ms | ActiveRecord: 0.9ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 14:46:31 +0800 Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:46:35 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0dj4RdGCq2Wdu/XDJWwX/OaIZif1xFHS+Y+ZtH3nkiHnaD7T0ytqOFYVtWgjW4mKg+E+Ek2MAVR45lYZuMSHOA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:46:35.953931"], ["id", 14]]  (17.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.9ms) Completed 200 OK in 107ms (Views: 53.2ms | ActiveRecord: 18.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 14:46:36 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:46:36 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 25ms (Views: 0.4ms | ActiveRecord: 1.2ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:47:29 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0G1ajELP33W8bdnCrtjUO9zyLOFW7/ipie2LbX73T5Xm3ZwaQGYeKHfDmWmo70pNuZt01O6nqC8IhETAu9RajA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:47:29.097886"], ["id", 14]]  (16.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.4ms) Completed 200 OK in 72ms (Views: 40.8ms | ActiveRecord: 16.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 14:47:29 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:47:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 14:51:09 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"utzE5XvIuOZmN/j8KFiWmELzP9ro88BtASuRCBQ0MFuMbAJzeWF5u62ZuFcubwjuJ5pn71C7kOuAQl6l0RclQg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"爸爸", "content"=>"brba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:55:26 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0G1ajELP33W8bdnCrtjUO9zyLOFW7/ipie2LbX73T5Xm3ZwaQGYeKHfDmWmo70pNuZt01O6nqC8IhETAu9RajA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:55:26.854816"], ["id", 14]]  (8.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (30.7ms) Completed 200 OK in 93ms (Views: 68.2ms | ActiveRecord: 9.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 14:55:27 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:55:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:55:45 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0G1ajELP33W8bdnCrtjUO9zyLOFW7/ipie2LbX73T5Xm3ZwaQGYeKHfDmWmo70pNuZt01O6nqC8IhETAu9RajA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:55:45.502987"], ["id", 14]]  (9.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.8ms) Completed 200 OK in 73ms (Views: 42.0ms | ActiveRecord: 10.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:55:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:55:49 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"4QmUOigHcwVgkl+A3vNHSJos7KR0fTSxUe15fzohu1vXuVKsKq6yWKs8HyvYxNk+/0W0kcw1ZDfQhLbS/wKuQg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '0'\n- !ruby/hash:ActionController::Parameters\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:55:49.650272"], ["id", 14]]  (8.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.6ms) Completed 200 OK in 72ms (Views: 43.5ms | ActiveRecord: 9.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:55:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:56:12 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"4QmUOigHcwVgkl+A3vNHSJos7KR0fTSxUe15fzohu1vXuVKsKq6yWKs8HyvYxNk+/0W0kcw1ZDfQhLbS/wKuQg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"0"}, {"cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:56:12.045353"], ["id", 14]]  (3.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (17.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (45.9ms) Completed 200 OK in 89ms (Views: 64.8ms | ActiveRecord: 4.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:56:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:56:16 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"dIyih343Q81dfOCxgkMmUpl/bpqNkMDBPv2Tm9PGPj9CPGQRfJ6CkJbSoBqEdLgk/BY2rzXYkEe/lFw2FuUrJg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"0"}, {"cancel"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel"=>"0"}, {"cancel"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel"=>"0", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel"=>"0"}, {"cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n cancel: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n cancel: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel: '0'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n cancel: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:56:16.193215"], ["id", 14]]  (5.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (20.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (34.3ms) Completed 200 OK in 75ms (Views: 51.0ms | ActiveRecord: 5.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:56:16 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:56:25 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"xarZiFP8gedbzt0mfcM52ShZGY8UHl2mDu5oGm3TkyHzGh8eUVVAupBgnY179KevTTBBuqxWDSCPh6e3qPCGOA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"0"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '0'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:56:25.233438"], ["id", 14]]  (6.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.1ms) Completed 200 OK in 70ms (Views: 47.0ms | ActiveRecord: 7.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:56:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (1.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 22ms (Views: 0.3ms | ActiveRecord: 1.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:56:28 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"uMM+VrVq3qzLBFn/T/V7c4zWHh0+f5wptAulJbYQZkOOc/jAt8Mf8QCqGVRJwuUF6b9GKIY3zK81YmqIczNzWg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"0"}, {"cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n cancel: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:56:28.504561"], ["id", 14]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.3ms) Completed 200 OK in 57ms (Views: 36.4ms | ActiveRecord: 7.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:56:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:56:33 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"75yJLbzgwh5/0MyNyDu+NcFIwf9c75YzPqZ7DRCxwRnZLE+7vkkDQ7R+jCbODCBDpCGZyuSnxrW/z7Sg1ZLUAA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"0"}, {"cancel"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel"=>"0"}, {"cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n cancel: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n cancel: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:56:33.246653"], ["id", 14]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (13.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.1ms) Completed 200 OK in 67ms (Views: 44.6ms | ActiveRecord: 7.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:56:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:59:07 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"75yJLbzgwh5/0MyNyDu+NcFIwf9c75YzPqZ7DRCxwRnZLE+7vkkDQ7R+jCbODCBDpCGZyuSnxrW/z7Sg1ZLUAA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"0"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"0"}, {"cancel"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel"=>"0"}, {"cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:59:07.821088"], ["id", 14]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (55.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (72.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (76.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (86.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (88.0ms) Completed 200 OK in 144ms (Views: 116.9ms | ActiveRecord: 6.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F14" for ::1 at 2019-08-07 14:59:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/14"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:59:16 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"SgRAjTIJ2avDmdZNRAN+mgkD4aDEQoGXNoz60AbymuJ8tIYbMKAY9gg3luZCNODsbGq5lXwK0RG35TV9w9GP+w==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>{"0"=>{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}}, "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps: !ruby/hash:ActionController::Parameters\n '0': !ruby/hash:ActionController::Parameters\n title: abrab\n content: rbarbabbrab\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 06:59:16.233970"], ["id", 14]]  (6.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.1ms) Completed 500 Internal Server Error in 49ms (ActiveRecord: 7.2ms) ActionView::Template::Error (no implicit conversion of String into Integer): 15:
16:
17: <%= label_tag :component_title, t('intro.admin.component.title') %> 18: <%= text_field_tag "#{step_prefix}[title]", step['title'], placeholder: t('intro.admin.placeholders.title') %> 19:
20: 21:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:18:in `[]' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__step_html_erb__2986736782539720092_70297893326520' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:6:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__steps_html_erb___3255402964496459752_70297903118900' actionpack (4.2.11.1) lib/action_controller/metal/strong_parameters.rb:185:in `each_pair' actionpack (4.2.11.1) lib/action_controller/metal/strong_parameters.rb:185:in `each_pair' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:5:in `each_with_index' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:5:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__steps_html_erb___3255402964496459752_70297903118900' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:55:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___3738428182427844611_70297900929800' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___3738428182427844611_70297900929800' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:17:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__2587200973932292170_47360792124380' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:19:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__3650609340488071178_70297893601320' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__2587200973932292170_47360792124380' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:47:in `update' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms) Started PATCH "/intro/admin/tours/14" for ::1 at 2019-08-07 14:59:58 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"SgRAjTIJ2avDmdZNRAN+mgkD4aDEQoGXNoz60AbymuJ8tIYbMKAY9gg3luZCNODsbGq5lXwK0RG35TV9w9GP+w==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin", "query"=>""}, "ident"=>"intro/admin/tours#index-zy1vgx", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>{"0"=>{"title"=>"abrab", "content"=>"rbarbabbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}}, "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"14"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-zy1vgx' AND "intro_tours"."id" != 14) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:9292/intro/admin\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 06:59:58.097693"], ["id", 14]]  (7.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (15.7ms) Completed 500 Internal Server Error in 49ms (ActiveRecord: 8.7ms) ActionView::Template::Error (no implicit conversion of String into Integer): 15:
16:
17: <%= label_tag :component_title, t('intro.admin.component.title') %> 18: <%= text_field_tag "#{step_prefix}[title]", step['title'], placeholder: t('intro.admin.placeholders.title') %> 19:
20: 21:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:18:in `[]' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:18:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__step_html_erb__2986736782539720092_70297902195400' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:6:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__steps_html_erb___3255402964496459752_70297903118900' actionpack (4.2.11.1) lib/action_controller/metal/strong_parameters.rb:185:in `each_pair' actionpack (4.2.11.1) lib/action_controller/metal/strong_parameters.rb:185:in `each_pair' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:5:in `each_with_index' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:5:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__steps_html_erb___3255402964496459752_70297903118900' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:55:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___3738428182427844611_70297900929800' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___3738428182427844611_70297900929800' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:17:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__2587200973932292170_47360792124380' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:19:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__3650609340488071178_70297893601320' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__2587200973932292170_47360792124380' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:47:in `update' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 15:00:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.0ms) Completed 200 OK in 50ms (Views: 47.9ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 15:00:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 14) AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started DELETE "/intro/admin/tours/14" for ::1 at 2019-08-07 15:00:07 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"cTAtZJX5GW/5KtGRG1Kj3Av3dPTdTAns6tATt1Zx/8lHgOvyl1DYMjKEkTodZT2qbp4swWUEWWprudwak1Lq0A==", "id"=>"14"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Intro::TourHistory Load (0.4ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 14]] SQL (0.2ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 9]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 14]]  (13.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 40ms (ActiveRecord: 14.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 15:00:07 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.9ms) Completed 200 OK in 34ms (Views: 32.6ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 15:00:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 15:00:08 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (28.5ms) Completed 200 OK in 49ms (Views: 48.6ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 15:00:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-07 15:00:15 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JdHKOlCXJktyFeveRf1KVJMkqVdJjGbiNjcU2O6WOTATYQysUj7nFrm7q3VDytQi9k3xYvHENmS3Xtt1K7UsKQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brab", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"0"}, {"cancel"=>"1", "title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"cancel"=>"0"}, {"cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brab' LIMIT 1 SQL (0.5ms) INSERT INTO "intro_tours" ("route", "ident", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["ident", "brab"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n cancel: '1'\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n cancel: '0'\n- !ruby/hash:ActionController::Parameters\n cancel: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-07 07:00:15.552147"], ["updated_at", "2019-08-07 07:00:15.552147"]]  (5.3ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/15 Completed 302 Found in 18ms (ActiveRecord: 5.9ms) Started GET "/intro/admin/tours/15" for ::1 at 2019-08-07 15:00:15 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"15"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 15]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.0ms) Completed 200 OK in 50ms (Views: 48.7ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F15" for ::1 at 2019-08-07 15:00:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/15"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/15" for ::1 at 2019-08-07 15:06:18 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"15"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 15]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (31.0ms) Completed 200 OK in 49ms (Views: 46.8ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F15" for ::1 at 2019-08-07 15:06:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/15"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/15" for ::1 at 2019-08-07 15:06:25 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jxjj88kTTsGqTsUUZX8w5qRDBduNHfndVm4d/GdS6xK5qCVly7qPnGHghb9jSK6QwSpd7jVVqVvXB9JRonH+Cw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brab", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"15"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 15]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 15) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 07:06:25.685065"], ["id", 15]]  (10.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.9ms) Completed 200 OK in 67ms (Views: 42.9ms | ActiveRecord: 11.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F15" for ::1 at 2019-08-07 15:06:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/15"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/15" for ::1 at 2019-08-07 15:06:28 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Q41i3DJCAKzp/et42EEt71Dbr2l50hzcU+V4PB8z7BB1PaRKMOvB8SJTq9PedrOZNbL3XMGaTFrSjLeR2hD5CQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brab", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"15"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 15]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 15) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 07:06:28.885413"], ["id", 15]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (21.6ms) Completed 200 OK in 60ms (Views: 40.4ms | ActiveRecord: 7.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F15" for ::1 at 2019-08-07 15:06:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/15"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 15:07:12 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (19.9ms) Completed 200 OK in 43ms (Views: 39.9ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 15:07:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-07 15:07:13 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (24.6ms) Completed 200 OK in 44ms (Views: 42.3ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-07 15:07:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-07 15:07:22 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Lt3/3YCZzfQfasLGJvTGi+I1gqs59uYWASNupHSEkyIYbTlLgjAMqdTEgm0gw1j9h1zanoG+tpCASqEJsaeGOw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brabr' LIMIT 1 SQL (0.2ms) INSERT INTO "intro_tours" ("route", "ident", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["ident", "brabr"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-07 07:07:22.072437"], ["updated_at", "2019-08-07 07:07:22.072437"]]  (7.2ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/16 Completed 302 Found in 20ms (ActiveRecord: 7.6ms) Started GET "/intro/admin/tours/16" for ::1 at 2019-08-07 15:07:22 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.7ms) Completed 200 OK in 35ms (Views: 34.2ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 15:07:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 15:07:26 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vfo72cSML5X9IEmG+dGMOn8ThCo+o+FPQN5zX/c/ilaLSv1PxiXuyDaOCS3/5hJMGnrcH4brscnBt7zyMhyfTw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.0ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 07:07:26.599107"], ["id", 16]]  (5.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.0ms) Completed 200 OK in 53ms (Views: 35.5ms | ActiveRecord: 5.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 15:07:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 15:07:30 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"3v9hTYe/4rN/SAsBL2fTiTqlj/8/mhyRQzWiRcwJrOboT6fbhRYj7rTmS6opUE3/X8zXyofSTBfCXG3oCSq5/w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 07:07:30.441065"], ["id", 16]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.0ms) Completed 200 OK in 53ms (Views: 34.1ms | ActiveRecord: 7.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 15:07:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 15:10:31 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"3v9hTYe/4rN/SAsBL2fTiTqlj/8/mhyRQzWiRcwJrOboT6fbhRYj7rTmS6opUE3/X8zXyofSTBfCXG3oCSq5/w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 07:10:31.574968"], ["id", 16]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (21.1ms) Completed 200 OK in 60ms (Views: 36.5ms | ActiveRecord: 6.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 15:10:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 15:10:37 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"UBllWSuAF7sVxfXvqEjpB9xBkyOQ04WA9HVH7MVFCLpmqaPPKSnW5t5rtUSuf3dxuSjLFiib1QZ1HIhBAGYdow==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\n- !ruby/hash:ActionController::Parameters\n title: brab\n content: rbabr\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 07:10:37.734217"], ["id", 16]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.9ms) Completed 200 OK in 66ms (Views: 45.8ms | ActiveRecord: 7.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 15:10:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 15:10:44 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7M2TMLyntDBkCbEaYjQF7+PGg8TKOO397ngf4dO5p/jafVWmvg51ba+n8bFkA5uZhq/b8XJwvXtvEdBMFpqy4Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\n- !ruby/hash:ActionController::Parameters\n title: brab\n content: rbabr\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n cancel: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 07:10:44.619073"], ["id", 16]]  (6.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (21.6ms) Completed 200 OK in 60ms (Views: 37.8ms | ActiveRecord: 7.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 15:10:44 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 15:10:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IHXBXD5xQ6oEwPuTwwkCTAShw1etWQdoTMfasEWi8NIWxQfKPNiC989uuzjFPpw6YcibYhURV+7NrhUdgIHlyw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 15:13:31 +0800 Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 15:14:19 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7M2TMLyntDBkCbEaYjQF7+PGg8TKOO397ngf4dO5p/jafVWmvg51ba+n8bFkA5uZhq/b8XJwvXtvEdBMFpqy4Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 07:14:19.873881"], ["id", 16]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (47.4ms) Completed 200 OK in 82ms (Views: 63.1ms | ActiveRecord: 5.9ms) Started GET "/assets/intro/shepherd.self-eec96b69716a9368756a08999541455d3d9b7ce11cce1ce8f22229dd98e8c47e.js?body=1" for ::1 at 2019-08-07 15:14:19 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 15:14:20 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 15:14:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 15:14:30 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uMfTsTf5u7xj0UQ/B5i1FiQeCUkbnhpw4NBkGKoW68WOdxUnNVB64ah/BJQBrytgQXdRfKPWSvZhuau1bzX+3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 15:30:24 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uMfTsTf5u7xj0UQ/B5i1FiQeCUkbnhpw4NBkGKoW68WOdxUnNVB64ah/BJQBrytgQXdRfKPWSvZhuau1bzX+3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 15:32:50 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uMfTsTf5u7xj0UQ/B5i1FiQeCUkbnhpw4NBkGKoW68WOdxUnNVB64ah/BJQBrytgQXdRfKPWSvZhuau1bzX+3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 18ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 15:34:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uMfTsTf5u7xj0UQ/B5i1FiQeCUkbnhpw4NBkGKoW68WOdxUnNVB64ah/BJQBrytgQXdRfKPWSvZhuau1bzX+3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:01:45 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uMfTsTf5u7xj0UQ/B5i1FiQeCUkbnhpw4NBkGKoW68WOdxUnNVB64ah/BJQBrytgQXdRfKPWSvZhuau1bzX+3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:01:51 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uMfTsTf5u7xj0UQ/B5i1FiQeCUkbnhpw4NBkGKoW68WOdxUnNVB64ah/BJQBrytgQXdRfKPWSvZhuau1bzX+3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"brab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:12:18 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uMfTsTf5u7xj0UQ/B5i1FiQeCUkbnhpw4NBkGKoW68WOdxUnNVB64ah/BJQBrytgQXdRfKPWSvZhuau1bzX+3A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrbabrab", "content"=>"brab\r\n\r\nbrba\r\n\r\nbrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__steps", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:14:55 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7M2TMLyntDBkCbEaYjQF7+PGg8TKOO397ngf4dO5p/jafVWmvg51ba+n8bFkA5uZhq/b8XJwvXtvEdBMFpqy4Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.8ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (2.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:14:55.069217"], ["id", 16]]  (6.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (96.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (98.6ms) Completed 200 OK in 160ms (Views: 126.5ms | ActiveRecord: 9.5ms) Started GET "/assets/intro/shepherd.self-c2a0ffc0c2e94135ce2ad5622e4373bc5653faf750bae98e51d7c38872ea5349.js?body=1" for ::1 at 2019-08-07 20:14:55 +0800 Started GET "/assets/intro/shepherd/base.self-ef468b6ec065a4a6382bb2358c748165c7890bef3b7c827fc9bb4988e0b98431.css?body=1" for ::1 at 2019-08-07 20:14:55 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:14:55 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:14:55 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 24ms (Views: 0.3ms | ActiveRecord: 1.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:15:15 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__steps", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:15:39 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:15:40 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:15:44 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"bottom", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:15:45 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"bottom", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:15:49 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"top-end", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:16:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"top-end", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:16:19 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"bottom", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:16:25 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabra", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:19:08 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:20:39 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LcNSC0VJNCupri1b2ESqTiuMii4Yki40HN7BKi9ZR44bc5SdR+D1dmIAbfDeczQ4TuXSG6DafrKdtw6H6npSlw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brab", "content"=>"brbabrabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"bottom", "element"=>".intro-admin__steps", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:21:42 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7M2TMLyntDBkCbEaYjQF7+PGg8TKOO397ngf4dO5p/jafVWmvg51ba+n8bFkA5uZhq/b8XJwvXtvEdBMFpqy4Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:21:42.724331"], ["id", 16]]  (5.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (65.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (67.3ms) Completed 200 OK in 104ms (Views: 84.1ms | ActiveRecord: 5.8ms) Started GET "/assets/intro/shepherd/base.self-6fcf0b14623e144ccbe8e424fa70b163300981ad6ba271741811c018a49d4f0b.css?body=1" for ::1 at 2019-08-07 20:21:42 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:21:43 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:21:43 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:22:04 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"VnNV2WAXo4/azq5h2GQ5aS5fXRN26AOYPq+diZCp6uBgw5NPYr5i0hFg7sreU6cfSzYFJs6gUx6/xlIkVYr/+Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: barbarba\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n title: brab\n content: rbabr\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 12:22:04.050644"], ["id", 16]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.4ms) Completed 200 OK in 70ms (Views: 45.5ms | ActiveRecord: 6.4ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:22:04 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:22:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:22:06 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"2+ro6L/hI+U3Sg7K/hAgVghZUEJWo8AtWro1Ht6JhXbtWi5+vUjiuPzkTmH4J74gbTAId+7rkKvb0/qzG6qQbw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:22:37 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"VnNV2WAXo4/azq5h2GQ5aS5fXRN26AOYPq+diZCp6uBgw5NPYr5i0hFg7sreU6cfSzYFJs6gUx6/xlIkVYr/+Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:22:37.370974"], ["id", 16]]  (20.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (64.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (68.7ms) Completed 200 OK in 127ms (Views: 89.3ms | ActiveRecord: 20.7ms) Started GET "/assets/intro/shepherd/base.self-d11271b84b308d2ff88d963d7117d5a1a2ab74ca370c27e3d17922889226f9f8.css?body=1" for ::1 at 2019-08-07 20:22:37 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:22:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 1.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:22:37 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:22:39 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"dGgA69ORxDdAkdmpNSR+Ce/xgH6PjBaUKxAb/fpod3dC2MZ90TgFaos/mQIzE+B/ipjYSzfERhKqedRQP0tibg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:23:08 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"dGgA69ORxDdAkdmpNSR+Ce/xgH6PjBaUKxAb/fpod3dC2MZ90TgFaos/mQIzE+B/ipjYSzfERhKqedRQP0tibg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"left", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:27:06 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"VnNV2WAXo4/azq5h2GQ5aS5fXRN26AOYPq+diZCp6uBgw5NPYr5i0hFg7sreU6cfSzYFJs6gUx6/xlIkVYr/+Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:27:06.312690"], ["id", 16]]  (6.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (53.7ms) Completed 200 OK in 94ms (Views: 70.5ms | ActiveRecord: 7.3ms) Started GET "/assets/intro/shepherd/base.self-bd3211f9c5547c853c2d0897dfa8dd2681c60f70ac635d4f5ee345683347fd40.css?body=1" for ::1 at 2019-08-07 20:27:06 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:27:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:27:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:27:15 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tck7T5LReUAoJoAGVNfaxdPeFx6j6OLbUrJzf/CTBuV7ef3ZkHi4HeOIwK1S4ESztrdPKxugsl3T27zSNbAT/A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:27:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tck7T5LReUAoJoAGVNfaxdPeFx6j6OLbUrJzf/CTBuV7ef3ZkHi4HeOIwK1S4ESztrdPKxugsl3T27zSNbAT/A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:27:46 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tck7T5LReUAoJoAGVNfaxdPeFx6j6OLbUrJzf/CTBuV7ef3ZkHi4HeOIwK1S4ESztrdPKxugsl3T27zSNbAT/A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:29:25 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tck7T5LReUAoJoAGVNfaxdPeFx6j6OLbUrJzf/CTBuV7ef3ZkHi4HeOIwK1S4ESztrdPKxugsl3T27zSNbAT/A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:29:33 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tck7T5LReUAoJoAGVNfaxdPeFx6j6OLbUrJzf/CTBuV7ef3ZkHi4HeOIwK1S4ESztrdPKxugsl3T27zSNbAT/A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:29:42 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tck7T5LReUAoJoAGVNfaxdPeFx6j6OLbUrJzf/CTBuV7ef3ZkHi4HeOIwK1S4ESztrdPKxugsl3T27zSNbAT/A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:29:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tck7T5LReUAoJoAGVNfaxdPeFx6j6OLbUrJzf/CTBuV7ef3ZkHi4HeOIwK1S4ESztrdPKxugsl3T27zSNbAT/A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrbarbarbabrab", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:33:03 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"VnNV2WAXo4/azq5h2GQ5aS5fXRN26AOYPq+diZCp6uBgw5NPYr5i0hFg7sreU6cfSzYFJs6gUx6/xlIkVYr/+Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:33:03.677793"], ["id", 16]]  (6.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (57.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (59.7ms) Completed 200 OK in 101ms (Views: 79.4ms | ActiveRecord: 7.4ms) Started GET "/assets/intro/shepherd/base.self-edd5924ce8c1bc60609c0c5dc4172ed830326156b263d9d77a96a40589d1faf9.css?body=1" for ::1 at 2019-08-07 20:33:03 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:33:03 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:33:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:33:08 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"J3QP5ygOHjjPsRtK0HvXD4pUnBwGy5Tr/dj9y6sFuQ0RxMlxKqffZQQfW+HWTEl57z3EKb6DxG18sTJmbiasFA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:40:35 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"J3QP5ygOHjjPsRtK0HvXD4pUnBwGy5Tr/dj9y6sFuQ0RxMlxKqffZQQfW+HWTEl57z3EKb6DxG18sTJmbiasFA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:40:43 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"J3QP5ygOHjjPsRtK0HvXD4pUnBwGy5Tr/dj9y6sFuQ0RxMlxKqffZQQfW+HWTEl57z3EKb6DxG18sTJmbiasFA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:40:57 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"J3QP5ygOHjjPsRtK0HvXD4pUnBwGy5Tr/dj9y6sFuQ0RxMlxKqffZQQfW+HWTEl57z3EKb6DxG18sTJmbiasFA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:41:00 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"VnNV2WAXo4/azq5h2GQ5aS5fXRN26AOYPq+diZCp6uBgw5NPYr5i0hFg7sreU6cfSzYFJs6gUx6/xlIkVYr/+Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:41:00.362781"], ["id", 16]]  (8.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (68.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (70.2ms) Completed 200 OK in 119ms (Views: 96.3ms | ActiveRecord: 9.3ms) Started GET "/assets/intro/shepherd.self-2eb35d721f89dd1075292ca08a521079ec294c4039b9f7a4171655f171ae5ea3.js?body=1" for ::1 at 2019-08-07 20:41:00 +0800 Started GET "/assets/intro/shepherd/base.self-410680a693f2e6e32a009b2e188fd4ba8dae56ffed39f3a6630eb2bf2c54928f.css?body=1" for ::1 at 2019-08-07 20:41:00 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:41:00 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:41:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:41:08 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"vUUisinb8Wd3XtbxjwGs7TUxCtTITqv1lMMeR8dklAyL9eQkK3IwOrzwllqJNjKbUFhS4XAG+3MVqtHqAkeBFQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrbrba", "content"=>"barbarbabrab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:41:17 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"vUUisinb8Wd3XtbxjwGs7TUxCtTITqv1lMMeR8dklAyL9eQkK3IwOrzwllqJNjKbUFhS4XAG+3MVqtHqAkeBFQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"brabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:41:49 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"VnNV2WAXo4/azq5h2GQ5aS5fXRN26AOYPq+diZCp6uBgw5NPYr5i0hFg7sreU6cfSzYFJs6gUx6/xlIkVYr/+Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:41:49.427800"], ["id", 16]]  (8.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (51.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (53.2ms) Completed 200 OK in 94ms (Views: 70.6ms | ActiveRecord: 9.3ms) Started GET "/assets/intro/shepherd/base.self-2424f5a67ea55291f874a982f46fbeed28ca27ebfeafeacb05dc298983bfae8b.css?body=1" for ::1 at 2019-08-07 20:41:49 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:41:49 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:41:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:41:59 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"XP0X5oC8huPCV+L4jMd1aaug5qsXh5FuvtWoquMr3NhqTdFwghVHvgn5olOK8Osfzsm+nq/Pweg/vGcHJgjJwQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:42:08 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"XP0X5oC8huPCV+L4jMd1aaug5qsXh5FuvtWoquMr3NhqTdFwghVHvgn5olOK8Osfzsm+nq/Pweg/vGcHJgjJwQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"brab", "content"=>"rbabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 20:49:40 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:49:45 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"XP0X5oC8huPCV+L4jMd1aaug5qsXh5FuvtWoquMr3NhqTdFwghVHvgn5olOK8Osfzsm+nq/Pweg/vGcHJgjJwQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: barbarba\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: top\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 12:49:45.478959"], ["id", 16]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (66.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (68.0ms) Completed 200 OK in 122ms (Views: 105.2ms | ActiveRecord: 5.9ms) Started GET "/assets/intro/shepherd/base.self-307fe59cb7cc2bb649811b1c9153c70cbc71599935f8b6686386da117391e7f4.css?body=1" for ::1 at 2019-08-07 20:49:45 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:49:45 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:49:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:49:49 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"KAAHKrL06bGjBwyYQ5dr1qiq2voh/ewiJE5Iszwu520esMG8sF0o7GipTDNFoPWgzcOCz5m1vKSlJ4ce+Q3ydA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 20:50:55 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="images.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"images.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:50:56 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"KAAHKrL06bGjBwyYQ5dr1qiq2voh/ewiJE5Iszwu520esMG8sF0o7GipTDNFoPWgzcOCz5m1vKSlJ4ce+Q3ydA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182255_YZnrJlVd.jpeg", "image_width"=>"275", "image_height"=>"183", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-07 20:51:33 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="website.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"website.jpg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:51:36 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KAAHKrL06bGjBwyYQ5dr1qiq2voh/ewiJE5Iszwu520esMG8sF0o7GipTDNFoPWgzcOCz5m1vKSlJ4ce+Q3ydA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: barbarba\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: top\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 12:51:36.807180"], ["id", 16]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.6ms) Completed 200 OK in 56ms (Views: 35.1ms | ActiveRecord: 7.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:51:37 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:51:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:51:38 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"77EtKgAjHkcRd/MYU6MSO+qZf6XCnJmGzCIQNuJHZaDZAeu8AorfGtrZs7NVlIxNj/AnkHrUyQBNS9+bJ2RwuQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:55:29 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KAAHKrL06bGjBwyYQ5dr1qiq2voh/ewiJE5Iszwu520esMG8sF0o7GipTDNFoPWgzcOCz5m1vKSlJ4ce+Q3ydA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:55:29.660254"], ["id", 16]]  (5.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (71.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (72.8ms) Completed 200 OK in 123ms (Views: 100.5ms | ActiveRecord: 6.2ms) Started GET "/assets/intro/shepherd/base.self-6d3e062cab6b378ae7dc85108a8c1729f052312f69aba4acb572322f24160d4d.css?body=1" for ::1 at 2019-08-07 20:55:29 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:55:29 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:55:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:55:31 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"sPxBg4U7dZTdZJGkg9Mz+jX8LwmGsk3Wa7OjMpPrQIGGTIcVh5K0yRbK0Q+F5K2MUJV3PD76HVDq2myfVshVmA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:56:52 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KAAHKrL06bGjBwyYQ5dr1qiq2voh/ewiJE5Iszwu520esMG8sF0o7GipTDNFoPWgzcOCz5m1vKSlJ4ce+Q3ydA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:56:52.258242"], ["id", 16]]  (8.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (51.9ms) Completed 200 OK in 98ms (Views: 68.4ms | ActiveRecord: 9.6ms) Started GET "/assets/intro/shepherd/base.self-05b012c3ef6e976cb71ab3d7b73dbfd10799acecac2e0e3642488fd3a1d5d090.css?body=1" for ::1 at 2019-08-07 20:56:52 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:56:52 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:56:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:56:54 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"1UUz4VgmxkwrMX7l4OFxRHZLTdXIITDkg0bz79OVvwPj9fV3Wo8HEeCfPk7m1u8yEyIV4HBpYGICLzxCFraqGg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:57:25 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KAAHKrL06bGjBwyYQ5dr1qiq2voh/ewiJE5Iszwu520esMG8sF0o7GipTDNFoPWgzcOCz5m1vKSlJ4ce+Q3ydA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:57:25.506962"], ["id", 16]]  (8.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (49.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (50.7ms) Completed 200 OK in 93ms (Views: 67.1ms | ActiveRecord: 9.1ms) Started GET "/assets/intro/shepherd/base.self-d819c2b00e071d9640fda557bc148e5a9b2fa9d5898467b5d7ed98a0a4b9f066.css?body=1" for ::1 at 2019-08-07 20:57:25 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:57:25 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:57:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:57:27 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"yBANQ1VPM4zOg6M/+xeq2Cl0AWsQtCAClNKX6t9tux7+oMvVV+by0QUt45T9IDSuTB1ZXqj8cIQVu1hHGk6uBw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 15ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:57:52 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KAAHKrL06bGjBwyYQ5dr1qiq2voh/ewiJE5Iszwu520esMG8sF0o7GipTDNFoPWgzcOCz5m1vKSlJ4ce+Q3ydA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:57:52.704295"], ["id", 16]]  (5.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (54.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (55.9ms) Completed 200 OK in 95ms (Views: 73.6ms | ActiveRecord: 6.3ms) Started GET "/assets/intro/shepherd/base.self-a863e8a7f37653f05f8e9ad756bdbb33b88dc2903b51d2eea5536f1e6eec94e4.css?body=1" for ::1 at 2019-08-07 20:57:52 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:57:53 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:57:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:57:54 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"oJdJODq+KExi2ZdwFpfdvev+hv8N/a4zWWY/5n7YPnGWJ4+uOBfpEal319sQoEPLjpfeyrW1/rXYD/BLu/sraA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:58:29 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"oJdJODq+KExi2ZdwFpfdvev+hv8N/a4zWWY/5n7YPnGWJ4+uOBfpEal319sQoEPLjpfeyrW1/rXYD/BLu/sraA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba]\r\n\r\nbarbarbabarbarba\r\n\r\n\r\n\r\n\r\nbarbarba]\r\n\r\nbarbarbabarbarba\r\n\r\n\r\nbarbarbabarbarbabarbarba]\r\n\r\nbarbarbabarbarba\r\n\r\n\r\nbarbarbabarbarbabarbarba]\r\n\r\nbarbarbabarbarba\r\n\r\n\r\nbarbarbabarbarbabarbarba]\r\n\r\nbarbarbabarbarba\r\n\r\n\r\nbarbarbabarbarba\r\nbarbarbabarbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:59:18 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KAAHKrL06bGjBwyYQ5dr1qiq2voh/ewiJE5Iszwu520esMG8sF0o7GipTDNFoPWgzcOCz5m1vKSlJ4ce+Q3ydA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 12:59:18.534291"], ["id", 16]]  (7.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (58.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (60.2ms) Completed 200 OK in 99ms (Views: 77.8ms | ActiveRecord: 8.0ms) Started GET "/assets/intro/shepherd/base.self-0a53df38be871c4387912bc61cefea36e51df28ec61e8477da37564ba88222e4.css?body=1" for ::1 at 2019-08-07 20:59:18 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:59:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:59:18 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:59:20 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"xuQo0xGgJNN/QP5TtKcHIHxD1WvOXAEJXCDwssvPtH7wVO5FEwnljrTuvviykJlWGSqNXnYUUY/dST8fDuyhZw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"barbarba", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:59:31 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"xuQo0xGgJNN/QP5TtKcHIHxD1WvOXAEJXCDwssvPtH7wVO5FEwnljrTuvviykJlWGSqNXnYUUY/dST8fDuyhZw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.7ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: top\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 12:59:31.849383"], ["id", 16]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.1ms) Completed 200 OK in 70ms (Views: 40.2ms | ActiveRecord: 8.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:59:32 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:59:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:59:34 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 20:59:54 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: top\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 12:59:54.828722"], ["id", 16]]  (6.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 58ms (Views: 37.6ms | ActiveRecord: 7.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 20:59:55 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 20:59:55 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 20:59:56 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Mz3B+lobmButpqKjftAW70AQm7O0d8cPSEd/9H8LxjMFjQdsWLJZRmYI4gh454iZJXnDhgw/l4nJLrBZuijTKg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:03:41 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:03:41.955060"], ["id", 16]]  (4.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (55.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (57.7ms) Completed 200 OK in 109ms (Views: 89.4ms | ActiveRecord: 5.6ms) Started GET "/assets/intro/shepherd.self-8bd82fba99b474194dd96e0611c39249712806b59916969429c314a117a2299b.js?body=1" for ::1 at 2019-08-07 21:03:42 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:03:42 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:03:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:03:43 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"iGxUIyZ6F0nwTOgTD9eyyPrDIFZIz7jLFeIPwFZ1TlS+3JK1JNPWFDviqLgJ4Cy+n6p4Y/CH6E2Ui8Btk1ZbTQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:08:04 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (10.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (6.5ms) begin transaction Intro::Tour Exists (1.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (1.8ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:08:05.491945"], ["id", 16]]  (6.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (18.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (37.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (74.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (310.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (382.1ms) Completed 200 OK in 1062ms (Views: 502.0ms | ActiveRecord: 26.5ms) Started GET "/assets/intro/shepherd.self-04631029065182cbd7a58d8b26d8e93e68a7d00109a017a8ec4ca9cb6d5f2fed.js?body=1" for ::1 at 2019-08-07 21:08:06 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:08:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:08:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (1.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 403ms (Views: 1.2ms | ActiveRecord: 2.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:08:09 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"+HBm7FvaMSy1ZfSa/AIBI8D1w8UHUJiTcp2cobmQzo3OwKB6WXPwcX7LtDH6NZ9VpZyb8L8YyBXz9FMMfLPblA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:15:31 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (2.9ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.9ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.6ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:15:31.635251"], ["id", 16]]  (6.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (21.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (30.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (114.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (120.4ms) Completed 200 OK in 227ms (Views: 172.5ms | ActiveRecord: 10.9ms) Started GET "/assets/intro/shepherd.self-9fc3360e21de924c53c62a44f3358e9b5852c365a36b7baa04b650f77438aa5e.js?body=1" for ::1 at 2019-08-07 21:15:32 +0800 Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:15:32 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:15:32.821570"], ["id", 16]]  (7.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (26.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (23.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (282.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (355.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (388.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (437.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (440.5ms) Completed 200 OK in 522ms (Views: 489.9ms | ActiveRecord: 7.9ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:15:33 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:15:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:15:35 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"OMSTzucQdq36oev892WAO4fTgmy+/neW/ZnemR0DhhcOdFVY5bm38DEPq1fxUh5N4rraWQa2JxB88BE02CCTDg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:17:36 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:17:36.841744"], ["id", 16]]  (11.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (46.2ms) Completed 200 OK in 101ms (Views: 67.6ms | ActiveRecord: 11.6ms) Started GET "/assets/intro/shepherd.self-e4d98964af541ad87dee64f7fc5413a26ffdc3f294f914616d76e5f0e7d6e0a5.js?body=1" for ::1 at 2019-08-07 21:17:36 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:17:37 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:17:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.6ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 1.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:17:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"RTW6yoyStFFJJOx11lSK0JZ+8kAzZYi+Nlnqg/YBokJzhXxcjjt1DIKKrN7QYxSm8xeqdYst2Di3MCUuMyK3Ww==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:18:17 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:18:17.937840"], ["id", 16]]  (10.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (56.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (57.9ms) Completed 200 OK in 108ms (Views: 82.3ms | ActiveRecord: 10.7ms) Started GET "/assets/intro/shepherd.self-244ce9147caa437ff9d94adbd75a2171d2cb3269d9f72891e76fcfe8f1190585.js?body=1" for ::1 at 2019-08-07 21:18:18 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:18:18 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:18:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:18:20 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"mGedQgB5CL1t0bKgB6MqzL+ZL0TmWPWPetshTCpKNmmu11vUAtDJ4KZ/8gsBlLS62vB3cV4QpQn7su7h72kjcA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:18:33 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"mGedQgB5CL1t0bKgB6MqzL+ZL0TmWPWPetshTCpKNmmu11vUAtDJ4KZ/8gsBlLS62vB3cV4QpQn7su7h72kjcA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrabrabbrabrabrabrabbrabrabrabrabbrabrabrabrabbrabrabrabrabbrabrabrabrabbrabrabrabrabbrabrabrabrab", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:22:15 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:22:15.184555"], ["id", 16]]  (5.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (94.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (97.9ms) Completed 200 OK in 137ms (Views: 114.8ms | ActiveRecord: 6.5ms) Started GET "/assets/intro/shepherd.self-ef9f2e3e2ba0e9b0a723c9478aa4ea509ef3a94edf57be858a87039f3ebc78ea.js?body=1" for ::1 at 2019-08-07 21:22:15 +0800 Started GET "/assets/intro/shepherd/base.self-cbf1291fc563d4e0da152db6b20caaa05aff49212ba53a96f484b9eedb95b42d.css?body=1" for ::1 at 2019-08-07 21:22:15 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:22:15 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:22:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:22:17 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"VtZOW/c0Yh0BetfGXtBKJWEjsIpIwmeD9ZzGo22qkFBgZojN9Z2jQMrUl21Y59RTBErov/CKNwV09QkOqImFSQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:22:32 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:22:32.143371"], ["id", 16]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (33.6ms) Completed 200 OK in 81ms (Views: 56.1ms | ActiveRecord: 7.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:22:32 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:22:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:22:34 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"6d83QwtFtDnFoabeUD8t7GchZWreRGMcA6ybSDS7x7Xfb/HVCex1ZA4P5nVWCLOaAkg9X2YMM5qCxVTl8ZjSrA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:28:26 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.7ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:28:26.025936"], ["id", 16]]  (6.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (67.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (69.8ms) Completed 200 OK in 125ms (Views: 93.1ms | ActiveRecord: 7.3ms) Started GET "/assets/intro/shepherd/base.self-60597be4ad94cb6cc677b1daec6b610a98810628f4f621c8aaa154b268f9de44.css?body=1" for ::1 at 2019-08-07 21:28:26 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:28:26 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:28:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:28:28 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"AnkYDqHIa3jWGrYIoZ6ICq9zogaMPfnGzED1NXb3qF40yd6Yo2GqJR209qOnqRZ8yhr6MzR1qUBNKTqYs9S9Rw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:28:35 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"AnkYDqHIa3jWGrYIoZ6ICq9zogaMPfnGzED1NXb3qF40yd6Yo2GqJR209qOnqRZ8yhr6MzR1qUBNKTqYs9S9Rw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"bottom", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:30:37 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.4ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:30:37.513733"], ["id", 16]]  (7.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (61.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (62.9ms) Completed 200 OK in 109ms (Views: 79.2ms | ActiveRecord: 8.4ms) Started GET "/assets/intro/shepherd/base.self-02a9fc7d103d92f3bdf2b8f66d59745fec1bcf58131188a4d12969bd84aa4439.css?body=1" for ::1 at 2019-08-07 21:30:37 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:30:37 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:30:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:30:39 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"fiWHOadnvuD3F5tSHcbNrt+cov5mwa8aK0fyrQjNclBIlUGvpc5/vTy52/kb8VPYuvX6y96J/5yqLj0Aze5nSQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:34:04 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"fiWHOadnvuD3F5tSHcbNrt+cov5mwa8aK0fyrQjNclBIlUGvpc5/vTy52/kb8VPYuvX6y96J/5yqLj0Aze5nSQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:36:10 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:36:10.016309"], ["id", 16]]  (7.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (74.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (76.1ms) Completed 200 OK in 121ms (Views: 97.0ms | ActiveRecord: 8.1ms) Started GET "/assets/intro/shepherd/base.self-e5e6dfa36634386d5f7462211bbf50745115bb3896cd8d98d73f719936ed6fd1.css?body=1" for ::1 at 2019-08-07 21:36:10 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:36:10 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:36:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:36:15 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"KhnH7UqZMf+9CXv1Js3dKyLVWO3V3k98bf36MaaCFi8cqQF7SDDwonanO14g+kNdR7wA2G2WH/rslDWcY6EDNg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:37:20 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"KhnH7UqZMf+9CXv1Js3dKyLVWO3V3k98bf36MaaCFi8cqQF7SDDwonanO14g+kNdR7wA2G2WH/rslDWcY6EDNg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\ BRAB BRABR", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:37:30 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"KhnH7UqZMf+9CXv1Js3dKyLVWO3V3k98bf36MaaCFi8cqQF7SDDwonanO14g+kNdR7wA2G2WH/rslDWcY6EDNg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\ BRAB BRABR", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"left", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:37:58 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"d2gGhdC3gv+9N5AhulqdeFEPTNETnPVwn9555SNX4h9B2MAT0h5DonaZ0Iq8bQMONGYU5KvUpfYet7ZI5nT3Bg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:37:58.983490"], ["id", 16]]  (5.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (22.4ms) Completed 200 OK in 61ms (Views: 39.6ms | ActiveRecord: 6.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:37:59 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:37:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:42:33 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"GfU3kBT47S3O/Ya/LqsWtF5czMypxXggIt3kHM9dVRkvRfEGFlEscAVTxhQonIjCOzWU+RGNKKajtCuxCn5AAA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 19ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:43:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"GfU3kBT47S3O/Ya/LqsWtF5czMypxXggIt3kHM9dVRkvRfEGFlEscAVTxhQonIjCOzWU+RGNKKajtCuxCn5AAA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"bottom", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:44:25 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GfU3kBT47S3O/Ya/LqsWtF5czMypxXggIt3kHM9dVRkvRfEGFlEscAVTxhQonIjCOzWU+RGNKKajtCuxCn5AAA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"bottom", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: bottom\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: brabrabrbarbababa\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 13:44:25.151067"], ["id", 16]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (64.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (66.2ms) Completed 200 OK in 112ms (Views: 83.3ms | ActiveRecord: 6.4ms) Started GET "/assets/intro/shepherd/base.self-c91556f176b5d9f637e9e7ea7c3957eae4b410df70a5ceeac0bc35cf401cdc29.css?body=1" for ::1 at 2019-08-07 21:44:25 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:44:25 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:44:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:44:27 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"TtkrKluCsmNv84R6GK2wnmnVXx1JjSyrKQPc7FROPvJ4ae28WStzPqRdxNEemi7oDLwHKPHFfC2oahNBkW0r6w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"bottom", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:44:54 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TtkrKluCsmNv84R6GK2wnmnVXx1JjSyrKQPc7FROPvJ4ae28WStzPqRdxNEemi7oDLwHKPHFfC2oahNBkW0r6w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"bottom", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:44:54.304740"], ["id", 16]]  (5.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (67.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (69.6ms) Completed 200 OK in 114ms (Views: 89.8ms | ActiveRecord: 5.8ms) Started GET "/assets/intro/shepherd/base.self-8e3c027abdcab121dbca960c6187cae7d741c1fea35ffaa20dc8de27d1921f18.css?body=1" for ::1 at 2019-08-07 21:44:54 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:44:54 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:44:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:44:56 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"KaxwpgdkgRpI5PK+chtdEIWMnyMldSPgyqVJven2rVgfHLYwBc1AR4NKshV0LMNm4OXHFp09c2ZLzIYQLNW4QQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"bottom", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-07 21:45:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (19.8ms) Completed 200 OK in 41ms (Views: 37.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/components/button.self-1bb260bb8479f0992c1b0821e9ba867bcb210044f5d483f54b96d2b1821a47ae.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/components/checkbox.self-3f83132468083d2bcaa0ecb176d9c64d150b8cd147c66b148bcd67c52677db41.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/components/form.self-38ff62babb683e923cadba0c5a5cd6431ad32b46655fc7f7cec487b13e7a1a42.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/components/loading.self-be278cf1a29332f9421d188c2213bf43736a0774bd7c7d12ae7dead5653ddcbe.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/components/select.self-c1bf991d4d88098f813066681300c4477fd3c095a1e21a8a7a518318bc9c2d99.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/tours.self-dc0e8e4a899b45b4181c179f8bf870ef1644c708a1b1630d86dcf22d23671a54.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/tour.self-1042f383ee7450636cf0cb81bbb45db17ea8697c36c3d89ff5b0978297d19685.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/application.self-72cef24f6d2b0bf68825925888b5c699c5ed400a0d9274ad476652e664cfde95.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/rails-ujs.self-01c6512d4e8bdd51de0acb7cb39b7111f1fc4611b16793448eef4dad0597ab6f.js?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/admin/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/shepherd.min.self-b7e96c1e700fce594b6cc5c7378769818792f81b87ab0d7d8168ef81cd24c759.js?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/shepherd.self-2eb35d721f89dd1075292ca08a521079ec294c4039b9f7a4171655f171ae5ea3.js?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/shepherd/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/shepherd/base.self-8e3c027abdcab121dbca960c6187cae7d741c1fea35ffaa20dc8de27d1921f18.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/assets/intro/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-07 21:45:08 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-07 21:45:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.5ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-07 21:45:09 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.4ms) Completed 200 OK in 40ms (Views: 38.9ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-07 21:45:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:45:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"2uNvDcutIcfs4YxR8Gr61Bv86obW34H6B1/vjFibUkXH6cXhNF0HBsEEn/Y1xmaoZ4pGOV2gCopLLrVqqwAsAQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"bottom", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:45:29 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KaxwpgdkgRpI5PK+chtdEIWMnyMldSPgyqVJven2rVgfHLYwBc1AR4NKshV0LMNm4OXHFp09c2ZLzIYQLNW4QQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: left\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: brabrabrbarbababa\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: right\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 13:45:29.313136"], ["id", 16]]  (17.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (35.8ms) Completed 200 OK in 88ms (Views: 58.0ms | ActiveRecord: 18.1ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:45:29 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:45:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:45:31 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"8Pqxw/88ui/5DBaHb+Vz1g/8I68YkHjGIK83e9Xhs5HGSndV/ZV7cjKiVixp0u2gapV7mqDYKEChxvjWEMKmiA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:45:58 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KaxwpgdkgRpI5PK+chtdEIWMnyMldSPgyqVJven2rVgfHLYwBc1AR4NKshV0LMNm4OXHFp09c2ZLzIYQLNW4QQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:45:58.373569"], ["id", 16]]  (17.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (71.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (76.4ms) Completed 200 OK in 136ms (Views: 98.9ms | ActiveRecord: 18.2ms) Started GET "/assets/intro/shepherd/base.self-1a4330ddc380cf0f5b19164fe3b5717ee4568a83222d60c55fd70e1aacbe6005.css?body=1" for ::1 at 2019-08-07 21:45:58 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:45:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:45:58 +0800 Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:46:07 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GhodDDi6inLTdMz5ZhjWB9dZ0q0Qo/Jv3zLijH+A9SIsqtuaOhNLLxjajFJgL0hxsjCKmKjrouleWy0huqPgOw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"bottom", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: top\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: brabrabrbarbababa\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: bottom\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 13:46:07.297269"], ["id", 16]]  (15.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.0ms) Completed 200 OK in 81ms (Views: 51.4ms | ActiveRecord: 15.8ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:46:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:46:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:46:08 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"evQs8avvDdEj9IpkHudbvPgjsJQv60bV/UOrPat9lPZMROpnqUbMjOhays8Y0MXKnUrooZejFlN8KmSQbl6B7w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"bottom", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:46:33 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"evQs8avvDdEj9IpkHudbvPgjsJQv60bV/UOrPat9lPZMROpnqUbMjOhays8Y0MXKnUrooZejFlN8KmSQbl6B7w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.0ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: left\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: brabrabrbarbababa\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: right\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 13:46:33.217682"], ["id", 16]]  (17.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 67ms (Views: 36.7ms | ActiveRecord: 17.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:46:33 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:46:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:46:34 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"vLXp3D4Egf2kpYm6Si02CA/cDRP/LhDjqOKy20jpMVuKBS9KPK1AoG8LyRFMGqh+arVVJkdmQGUpi312jcokQg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:46:58 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"evQs8avvDdEj9IpkHudbvPgjsJQv60bV/UOrPat9lPZMROpnqUbMjOhays8Y0MXKnUrooZejFlN8KmSQbl6B7w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:46:58.398208"], ["id", 16]]  (13.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (84.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (89.5ms) Completed 200 OK in 142ms (Views: 111.2ms | ActiveRecord: 13.7ms) Started GET "/assets/intro/shepherd/base.self-e4b7ae5855453a614b8839cd1f70578292e9ea6a5dd919acd35a876f3162a3e9.css?body=1" for ::1 at 2019-08-07 21:46:58 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:46:58 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:46:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:47:00 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"b6bNo+Iwe3hXShCyzUnU/75f40cMFODBM3zx8rsSmGJZFgs14Jm6JZzkUBnLfkqJ2za7crRcsEeyFT5ffjGNew==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:47:09 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"b6bNo+Iwe3hXShCyzUnU/75f40cMFODBM3zx8rsSmGJZFgs14Jm6JZzkUBnLfkqJ2za7crRcsEeyFT5ffjGNew==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"left", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: left\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: brabrabrbarbababa\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: left\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 13:47:09.962597"], ["id", 16]]  (10.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (15.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (41.9ms) Completed 200 OK in 109ms (Views: 74.0ms | ActiveRecord: 11.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:47:10 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:47:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:47:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"uAtf2i2fJBw+2IwThn3fhHZjdHvZ/V2imu3cE0y15b+Ou5lMLzblQfV2zLiASkHyEwosTmG1DSQbhBO+iZbwpg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"left", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:49:17 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"b6bNo+Iwe3hXShCyzUnU/75f40cMFODBM3zx8rsSmGJZFgs14Jm6JZzkUBnLfkqJ2za7crRcsEeyFT5ffjGNew==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"left", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:49:17.166550"], ["id", 16]]  (5.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (72.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (74.1ms) Completed 200 OK in 120ms (Views: 94.1ms | ActiveRecord: 6.4ms) Started GET "/assets/intro/shepherd/base.self-c1e12f287d832fa40b177ab02e249cd782488252c59ccb5d1f4a9a8fb36f4dcd.css?body=1" for ::1 at 2019-08-07 21:49:17 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:49:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:49:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:49:18 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"/4tYBZTnFguJAtHwdZryCogzJBolZHzOyRUTe5y2g7LJO56Tlk7XVkKskVtzrWx87Vp8L50sLEhIfNzWWZWWqw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"left", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:59:14 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"b6bNo+Iwe3hXShCyzUnU/75f40cMFODBM3zx8rsSmGJZFgs14Jm6JZzkUBnLfkqJ2za7crRcsEeyFT5ffjGNew==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"left", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:59:14.058619"], ["id", 16]]  (7.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (84.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (85.8ms) Completed 200 OK in 139ms (Views: 115.7ms | ActiveRecord: 7.9ms) Started GET "/assets/intro/shepherd/base.self-9fce68708fd055026a7d4c78d43ba49e5d9b8de6b7a8c7b26ce7cb98ad7a2805.css?body=1" for ::1 at 2019-08-07 21:59:14 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:59:14 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:59:14 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:59:16 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"left", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:59:25 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: left\n element: \".intro-admin__step\"\n placement: top\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: brabrabrbarbababa\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: right\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 13:59:25.794627"], ["id", 16]]  (5.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (22.6ms) Completed 200 OK in 66ms (Views: 42.4ms | ActiveRecord: 5.9ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:59:26 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:59:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:59:27 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"MOPFD3lbpvSpXTbOMb8cRg6LJM43xt/W4VVgQa6+fWkGUwOZe/JnqWLzdmU3iIIwa+J8+4+Oj1BgPK/sa51ocA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 21:59:51 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.0ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 13:59:51.667797"], ["id", 16]]  (5.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (70.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (72.3ms) Completed 200 OK in 108ms (Views: 88.1ms | ActiveRecord: 6.3ms) Started GET "/assets/intro/shepherd/base.self-a7d5be62603b839fee89760b2adc14f5d27173aea65b2adb599a22c48ea776d0.css?body=1" for ::1 at 2019-08-07 21:59:51 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 21:59:51 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 21:59:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 21:59:53 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"O741bcYjzMFNkGHBhYgus/4blSC/gCGI+redjLA7+l0NDvP7xIoNnIY+IWqDv7DFm3LNFQfIcQ573lIhdRjvRA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:01:56 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:01:56.346114"], ["id", 16]]  (4.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (86.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (89.1ms) Completed 200 OK in 132ms (Views: 104.6ms | ActiveRecord: 4.7ms) Started GET "/assets/intro/shepherd/base.self-fe45dfc611845e1a0e4ab907d594a36ae8a0fbdd4d2076d2653180ee45a375eb.css?body=1" for ::1 at 2019-08-07 22:01:56 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:01:56 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:01:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:01:57 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hAFJEb6z631Hm9Y9yv1B/XQ1YIlgHZP+ETJqtDlOw+KysY+HvBoqIIw1lpbMyt+LEVw4vNhVw3iQW6UZ/G3W+w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:02:01 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:02:01.849261"], ["id", 16]]  (5.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.0ms) Completed 200 OK in 65ms (Views: 40.2ms | ActiveRecord: 5.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:02:02 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:02:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:02:03 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"heUymkajcI8LCUIQRY+3UiAiHGdUI1GSA2cHJbNs2TezVfQMRAqx0sCnArtDuCkkRUtEUuxrARSCDsiIdk/MLg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:02:28 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:02:28.697173"], ["id", 16]]  (5.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (16.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (63.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (65.0ms) Completed 200 OK in 102ms (Views: 81.8ms | ActiveRecord: 6.3ms) Started GET "/assets/intro/shepherd/base.self-8d698a8e821b2e20baeaf926eedfb88e1b8edb8e418be7c862a44acc95f6c1e1.css?body=1" for ::1 at 2019-08-07 22:02:28 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:02:29 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:02:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:02:30 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"+xopI/Jfel9FmaaiNzcfXK2mseMTB7EsgGLBQ73gDGDNqu+18Pa7Ao435gkxAIEqyM/p1qtP4aoBCw7ueMMZeQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:03:12 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:03:12.468089"], ["id", 16]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (75.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (77.5ms) Completed 200 OK in 119ms (Views: 99.1ms | ActiveRecord: 7.6ms) Started GET "/assets/intro/shepherd/base.self-e4e5ce67be8a73fe48e358f7d455d0f8c42b9fd43d85ff5ede30eca008675e2a.css?body=1" for ::1 at 2019-08-07 22:03:12 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:03:12 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:03:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:03:14 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"JitM2VBKFh//F9bVM8swTrzgXMeS7rOUpH2YaFwGYMQQm4pPUuPXQjS5ln41/K442YkE8iqm4xIlFFfFmSV13Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:03:41 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:03:41.935107"], ["id", 16]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (86.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (88.0ms) Completed 200 OK in 147ms (Views: 120.6ms | ActiveRecord: 7.7ms) Started GET "/assets/intro/shepherd/base.self-29d857e4d3e863fd4ecc2fe413042ff0426411ee60fa34a8e1ae9253d7cae8ee.css?body=1" for ::1 at 2019-08-07 22:03:42 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:03:42 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:03:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:03:43 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"k0OCgPJBhXPeBvXbqUHgUNdFIxPVl6df9wXaPK4yhC6l80QW8OhELhWotXCvdn4msix7Jm3f99l2bBWRaxGRNw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:03:46 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:03:46.572013"], ["id", 16]]  (5.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (30.2ms) Completed 200 OK in 82ms (Views: 53.6ms | ActiveRecord: 6.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:03:46 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:03:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:03:50 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"miU6tR14HK/yZBxP0fryX2VoVIma9aK+XGTWZNgtbueslfwjH9Hd8jnKXOTXzWwpAAEMvCK98jjdDRnJHQ57/g==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:04:06 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:04:06.916769"], ["id", 16]]  (5.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (79.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (82.2ms) Completed 200 OK in 121ms (Views: 100.1ms | ActiveRecord: 5.9ms) Started GET "/assets/intro/shepherd/base.self-99806f4a926aa5cc291c33a345327aa3987bd3f63eaa04b455b5bfc88b7d5c05.css?body=1" for ::1 at 2019-08-07 22:04:07 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:04:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:04:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:04:09 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"De6Qg3E9E3hXeoFEGmscRa7JfklZjwrF41n/SobqA+o7XlYVc5TSJZzUwe8cXIIzy6AmfOHHWkNiMDDnQ8kW8w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:18:30 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:18:30.202035"], ["id", 16]]  (5.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (112.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (116.5ms) Completed 200 OK in 156ms (Views: 133.6ms | ActiveRecord: 6.6ms) Started GET "/assets/intro/shepherd/base.self-12e50b55c6c7e9e5be43ce2b6c5300e39239f61a1771958546d188fa2ea837ab.css?body=1" for ::1 at 2019-08-07 22:18:30 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:18:30 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:18:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:18:43 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"yt2lHCs3MNx1/uRAOEcAg1URXK/gYkADDjd6VQW3So38bWOKKZ7xgb5QpOs+cJ71MHgEmlgqEIWPXrX4wJRflA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:21:22 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:21:22.275534"], ["id", 16]]  (17.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (113.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (120.2ms) Completed 200 OK in 183ms (Views: 142.4ms | ActiveRecord: 18.6ms) Started GET "/assets/intro/shepherd/base.self-46214d7725b15b34de0698336732f16278904d67dd4efac6f3d48307e9f24cfc.css?body=1" for ::1 at 2019-08-07 22:21:22 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:21:22 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:21:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:21:25 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kHpV9TwDX2Woz3wkhWkmUIPaqOXFGr1Jo9k5b2I9FKGmypNjPqqeOGNhPI+DXrgm5rPw0H1S7c8isPbCpx4BuA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:21:48 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:21:48.906854"], ["id", 16]]  (19.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (85.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (87.6ms) Completed 200 OK in 142ms (Views: 103.1ms | ActiveRecord: 20.2ms) Started GET "/assets/intro/shepherd/base.self-4da84da76f76b0381b9e3b7cdc70d095964209ecabdc348b22a1a21efa22de8f.css?body=1" for ::1 at 2019-08-07 22:21:49 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:21:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:21:49 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:21:50 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"bnGDaEiTL2qFnqTj839/2WyNVhqcLJ9shzeFnCkLps9YwUX+SjruN04w5Ej1SOGvCeQOLyRkz+oGXkox7Ciz1g==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:22:46 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:22:46.027075"], ["id", 16]]  (23.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (93.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (96.9ms) Completed 200 OK in 161ms (Views: 114.4ms | ActiveRecord: 23.9ms) Started GET "/assets/intro/shepherd/base.self-8f941a82f55e29a978de8259240506d75ef3d7e43607f67cd3cefde765869b31.css?body=1" for ::1 at 2019-08-07 22:22:46 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:22:46 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:22:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:22:47 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7mYr1oUR7hLF65+bklXUpDddH8LIgMLZT6RDulOCkRTY1u1Ah7gvTw5F3zCUYkrSUjRH93DIkl/OzYwXlqGEDQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:22:51 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7mYr1oUR7hLF65+bklXUpDddH8LIgMLZT6RDulOCkRTY1u1Ah7gvTw5F3zCUYkrSUjRH93DIkl/OzYwXlqGEDQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:23:02 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:23:02.030881"], ["id", 16]]  (17.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (88.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (90.5ms) Completed 200 OK in 146ms (Views: 111.3ms | ActiveRecord: 18.1ms) Started GET "/assets/intro/shepherd/base.self-2f45bf60bc540ac5a01204b36a13531a5abf731d54b6d3e39390b613e1062667.css?body=1" for ::1 at 2019-08-07 22:23:02 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:23:02 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:23:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:23:03 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"IpUYSEI0EqlZkKNIrVQL+YimdQlzjBcga1QGbBIghswUJd7eQJ3T9JI+4+OrY5WP7c8tPMvER6bqPcnB1wOT1Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:23:28 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:23:28.496207"], ["id", 16]]  (5.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (13.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (84.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (86.8ms) Completed 200 OK in 135ms (Views: 111.0ms | ActiveRecord: 6.5ms) Started GET "/assets/intro/shepherd/base.self-e53e8458adccd1cd4e2c2491b07e0af64904bc909144411f1d295247cc1357d3.css?body=1" for ::1 at 2019-08-07 22:23:28 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:23:28 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:23:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.4ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:23:30 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"MVvnco3sYhEWBLWtog/M2lZVVDJaKedH+vE3I3l3ZfwH6yHkj0WjTN2q9QakOFKsMzwMB+Jht8F7mPiOvFRw5Q==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:23:49 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:23:49.808338"], ["id", 16]]  (7.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (79.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (83.3ms) Completed 200 OK in 131ms (Views: 102.0ms | ActiveRecord: 8.4ms) Started GET "/assets/intro/shepherd/base.self-625148c7e03d3e9bffa8cfb3e4e2aade4e89ee433d4b503984cfea1ad00ff202.css?body=1" for ::1 at 2019-08-07 22:23:49 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:23:50 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:23:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:23:51 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ujjolFQcM43nFsmhJOroFV+48TG+awCgYj77827xosKMiC4CVrXy0Cy4iQoi3XZjOtGpBAYjUCbjVzReq9K32w==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:23:58 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KgL7chqwix2FoMGdsBLgnSpk5L7S05W15WFyG1IjJf0csj3kGBlKQE4OgTa2JX7rTw28i2qbxTNkCL22lwAw5A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:23:58.305013"], ["id", 16]]  (3.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (59.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (61.6ms) Completed 200 OK in 98ms (Views: 78.2ms | ActiveRecord: 4.5ms) Started GET "/assets/intro/shepherd/base.self-3bbd9f9925afde8ed1a97c0bc5fa387f542bd3863a0b6e4911f31428d92846d4.css?body=1" for ::1 at 2019-08-07 22:23:58 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:23:58 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:23:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:00 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:14 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top-start", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:18 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"top-end", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:24 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"bottom", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:28 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"bottom-start", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:32 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"bottom-end", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"left", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"left-end", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:46 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:24:59 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"left", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:25:01 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:25:53 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".intro-admin__step", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:26:17 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.0ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: left\n element: \".js-intro-admin__button-upload\"\n placement: right\n z_index: '99'\n cancel_link: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: brabrabrbarbababa\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: right\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 14:26:17.699752"], ["id", 16]]  (5.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.9ms) Completed 200 OK in 57ms (Views: 36.6ms | ActiveRecord: 6.2ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:26:17 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:26:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:26:26 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:26:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"left", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:26:40 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:26:46 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"bottom", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:26:55 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top-start", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:26:56 +0800 Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:26:58 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top-start", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:27:05 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"bottom", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:27:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"bottom", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:27:18 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:27:58 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top-end", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:28:03 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top-end", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:28:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"bottom", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 17ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:28:23 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:28:34 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"bottom", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:28:46 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top-start", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:28:57 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hWBWOQFc6ouopjooB/AByq4Ottjid9TeWhJ5qa3KESCz0JCvA/Ur1mMIeoMBx5+8y2fu7Vo/hFjbe7YEaOkEOQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"top-start", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:30:05 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LN2Qzq/of9WxN1wsOCC5roWHzR0Th40UNDHBQQG3LiMabVZYrUG+iHqZHIc+FyfY4O6VKKvP3ZK1WA7sxJQ7Og==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.7ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.5ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (1.0ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:30:05.231682"], ["id", 16]]  (4.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (52.5ms) Completed 200 OK in 98ms (Views: 76.4ms | ActiveRecord: 7.2ms) Started GET "/assets/intro/shepherd.self-46c7312839bd0846d26dc8ee77cd4511016afc92144ac88b304bf864def55c9e.js?body=1" for ::1 at 2019-08-07 22:30:05 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:30:05 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:30:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:30:09 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ig45f54hEbhAFu0Y8eMRcP9JkLiRmnOjudo91jkmuJgUvv/pnIjQ5Yu4rbP31I8GmiDIjSnSIyU4s/J7/AWtgQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabrb\n content: \"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\\\\r\\n\\r\\nBRAB\\r\\n\\r\\nBRABR\"\n image_url: \"/uploads/intro/20190807/1565182180_ybBklXIC.png\"\n image_width: '295'\n image_height: '171'\n image_placement: left\n element: \".js-intro-admin__button-upload\"\n placement: right\n z_index: '99'\n cancel_link: '1'\n fixed_placement: '1'\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: brabrabrbarbababa\n image_url: \"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: right\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-07 14:30:09.992328"], ["id", 16]]  (7.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.0ms) Completed 200 OK in 74ms (Views: 49.3ms | ActiveRecord: 8.3ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:30:10 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:30:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:30:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"wiYSnhznb4z9Lo5d0yvRtg+Mt/x84WLzWyGJKt9DoqP0ltQIHk6u0TaAzvbVHE/AauXvycSpMnXaSEaHGmC3ug==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:34:16 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ig45f54hEbhAFu0Y8eMRcP9JkLiRmnOjudo91jkmuJgUvv/pnIjQ5Yu4rbP31I8GmiDIjSnSIyU4s/J7/AWtgQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:34:16.572400"], ["id", 16]]  (6.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (40.2ms) Completed 200 OK in 81ms (Views: 61.3ms | ActiveRecord: 6.7ms) Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:34:16 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:34:16 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:34:19 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"fKV3l+1Xiymz3MP4FwmPfKqKBHax8Bl8QVmkfE6lVNdKFbEB7/5KdHhyg1MRPhEKz+NcQwm4SfrAMGvRi4ZBzg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:35:06 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ig45f54hEbhAFu0Y8eMRcP9JkLiRmnOjudo91jkmuJgUvv/pnIjQ5Yu4rbP31I8GmiDIjSnSIyU4s/J7/AWtgQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:35:06.595583"], ["id", 16]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (41.9ms) Completed 200 OK in 81ms (Views: 59.3ms | ActiveRecord: 7.7ms) Started GET "/assets/intro/shepherd.self-1ef0cc077243b6037c25e527c817037bec368872e1788b4fb540856cce16e40c.js?body=1" for ::1 at 2019-08-07 22:35:06 +0800 Started GET "/assets/shepherd.min.js.map" for ::1 at 2019-08-07 22:35:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:35:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.4ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:35:08 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Kgd1J1a/G9d/Hf7sZkiSD8RnuVZdE1AbVv+c+IWFk70ct7OxVBbairSzvkdgfwx5oQ7hY+VbAJ3XllNVQKaGpA==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:46:25 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ig45f54hEbhAFu0Y8eMRcP9JkLiRmnOjudo91jkmuJgUvv/pnIjQ5Yu4rbP31I8GmiDIjSnSIyU4s/J7/AWtgQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:46:25.458406"], ["id", 16]]  (12.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (27.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (636.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (641.5ms) Completed 200 OK in 738ms (Views: 672.1ms | ActiveRecord: 13.8ms) Started GET "/assets/shepherd.min.self-537211bad99bc5c270bda93c52f12ed1d1963676912a4727fa43377ad7d430d6.js?body=1" for ::1 at 2019-08-07 22:46:26 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:46:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 101ms (Views: 0.2ms | ActiveRecord: 1.1ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:46:28 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ih+AVbLuAqPgENex3I52TNWZUfy9K0ywwpC6yJnUhVcUr0bDsEfD/iu+lxraueg6sPAJyQVjHDZD+XVlXPeQTg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:46:30 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ig45f54hEbhAFu0Y8eMRcP9JkLiRmnOjudo91jkmuJgUvv/pnIjQ5Yu4rbP31I8GmiDIjSnSIyU4s/J7/AWtgQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:46:30.909994"], ["id", 16]]  (17.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (28.7ms) Completed 200 OK in 85ms (Views: 50.8ms | ActiveRecord: 18.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:46:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:46:37 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ig45f54hEbhAFu0Y8eMRcP9JkLiRmnOjudo91jkmuJgUvv/pnIjQ5Yu4rbP31I8GmiDIjSnSIyU4s/J7/AWtgQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:46:37.970423"], ["id", 16]]  (12.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.3ms) Completed 200 OK in 80ms (Views: 44.1ms | ActiveRecord: 13.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:46:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:46:39 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ww0CThl8pkGUPUDAscE3zKtNJ0/4tDsRof8bQFKuxhJtvcTYG9VnHF+TAGu39qm6ziR/ekD8a5cgltTtl43TCw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:46:46 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ww0CThl8pkGUPUDAscE3zKtNJ0/4tDsRof8bQFKuxhJtvcTYG9VnHF+TAGu39qm6ziR/ekD8a5cgltTtl43TCw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 22:46:51 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ww0CThl8pkGUPUDAscE3zKtNJ0/4tDsRof8bQFKuxhJtvcTYG9VnHF+TAGu39qm6ziR/ekD8a5cgltTtl43TCw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 22:46:55 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ig45f54hEbhAFu0Y8eMRcP9JkLiRmnOjudo91jkmuJgUvv/pnIjQ5Yu4rbP31I8GmiDIjSnSIyU4s/J7/AWtgQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 14:46:55.753782"], ["id", 16]]  (16.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (37.3ms) Completed 200 OK in 93ms (Views: 55.8ms | ActiveRecord: 17.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 22:46:55 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 23:24:15 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"fTbFUT9Ya5mKeLmz5YIa9sbOfrilJE6he+RRNvP5cERLhgPHPfGqxEHW+RjjtYSAo6cmjR1sHif6jZ6bNtplXQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/16" for ::1 at 2019-08-07 23:25:27 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ig45f54hEbhAFu0Y8eMRcP9JkLiRmnOjudo91jkmuJgUvv/pnIjQ5Yu4rbP31I8GmiDIjSnSIyU4s/J7/AWtgQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"16"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brabr' AND "intro_tours"."id" != 16) LIMIT 1 SQL (0.7ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: ''\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-07 15:25:27.051427"], ["id", 16]]  (6.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.8ms) Completed 200 OK in 67ms (Views: 45.6ms | ActiveRecord: 7.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16" for ::1 at 2019-08-07 23:25:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/16"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-07 23:25:28 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Gc19nwK6ppfI6cqnzJK9f1MER6T9WMyvydbl00T8hD4vfbsJABNnygNHigzKpSMJNm0fkUUQnClIvyp+gd+RJw==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 06:21:07 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (569.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (580.8ms) Completed 200 OK in 620ms (Views: 608.1ms | ActiveRecord: 0.4ms) Started GET "/assets/shepherd.min.self-9296a20fe9c3c1b1a41a8bc13b1f39b4efa14e0180702c7ebe6112aec3a37ab1.js?body=1" for ::1 at 2019-08-08 06:21:08 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 06:21:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 30ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 06:21:10 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (85.1ms) Completed 200 OK in 109ms (Views: 102.1ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 06:21:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 06:21:13 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"j6OROObYIcCfShVoLoq0UAj0UL65wddmYfPXPqfMHk+5E1eu5HHgnVTkVcMovSombZ0IiwGJh+DgmhiTYu8LVg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 06:21:22 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"j6OROObYIcCfShVoLoq0UAj0UL65wddmYfPXPqfMHk+5E1eu5HHgnVTkVcMovSombZ0IiwGJh+DgmhiTYu8LVg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"left", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 08:44:48 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (484.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (496.1ms) Completed 200 OK in 531ms (Views: 518.4ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 08:44:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 25ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 08:44:50 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (28.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (41.3ms) Completed 200 OK in 67ms (Views: 62.2ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 08:44:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 08:44:54 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"gEVL/uUlvmVrVmwsk+y7QdQM3oK5JnX3rvWeqVqESES29Y1o54x/OKD4LIeV2yU3sWWGtwFuJXEvnFEEn6ddXQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 08:45:04 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (29.2ms) Completed 200 OK in 51ms (Views: 48.9ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 08:45:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 08:45:05 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"bF26ZMdcnJ9qPUU0nrpRIb7X1of26Wbb8gXtY/M6xxRa7XzyxfVdwqGTBZ+Yjc9X276Osk6hNl1zbCLONhnSDQ==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 08:45:15 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (38.9ms) Completed 200 OK in 64ms (Views: 60.8ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 08:45:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 08:45:22 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (28.6ms) Completed 200 OK in 51ms (Views: 49.0ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 08:45:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 08:45:23 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"cwWL4PeAfM7C6TmSCwCmXUa7JGc2iB84mGBANpmARvFFtU129Sm9kwlHeTkNNzgrI9J8Uo7AT74ZCY+bXKNT6A==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 08:45:39 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (29.0ms) Completed 200 OK in 52ms (Views: 50.0ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 08:45:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 08:45:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"V+KsvGtkwFR84xHiU+KJjhj/WMzw/R8VnhdK5740wothUmoqac0BCbdNUUlV1Rf4fZYA+Ui1T5MffoVKexfXkg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 08:48:09 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.4ms) Completed 200 OK in 44ms (Views: 42.4ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 08:48:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 08:48:11 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (55.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (59.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (68.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (71.0ms) Completed 200 OK in 98ms (Views: 95.3ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 08:48:11 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 08:48:24 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/", "tour"=>{}} Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 08:48:33 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LZEgpX+km245O93+gGQIjdtk8/vUgv9asZeirqsylZMbIeYzfQ1aM/KVnVWGU5b7vg2rzmzKr9ww/m0DbhGAig==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/", "query"=>""}, "ident"=>"home#index-4gfmj3", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"Hello World", "content"=>"Hello World", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'home#index-4gfmj3' LIMIT 1 SQL (0.4ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: home\n action: index\nquery: ''\nsimple: http://localhost:9292/\nstrict: false\n"], ["ident", "home#index-4gfmj3"], ["controller_path", "home"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: Hello World\n content: Hello World\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 00:48:33.877443"], ["updated_at", "2019-08-08 00:48:33.877443"]]  (3.5ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/17 Completed 302 Found in 24ms (ActiveRecord: 4.1ms) Started GET "/intro/admin/tours/17" for ::1 at 2019-08-08 08:48:33 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"17"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 17]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.3ms) Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F17" for ::1 at 2019-08-08 08:48:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/17"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 08:48:36 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.6ms) Completed 200 OK in 49ms (Views: 45.8ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 08:48:36 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 08:48:44 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (11.6ms) Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `intro_tag' for #<#:0x007f0485e81490>): 1: <%= intro_tag(enable: true) %> 2: 3: <%= link_to t('intro.admin.title'), intro.admin_tours_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__2777720081523671156_69828701585440' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.4ms) Started GET "/" for ::1 at 2019-08-08 08:48:55 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (11.0ms) Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `intro_tag' for #): 1: <%= intro.intro_tag(enable: true) %> 2: 3: <%= link_to t('intro.admin.title'), intro.admin_tours_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__2777720081523671156_69828709283380' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.8ms) Started GET "/" for ::1 at 2019-08-08 08:48:56 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (13.7ms) Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `intro_tag' for #): 1: <%= intro.intro_tag(enable: true) %> 2: 3: <%= link_to t('intro.admin.title'), intro.admin_tours_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__2777720081523671156_69828709283380' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.6ms) Started GET "/" for ::1 at 2019-08-08 08:48:57 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (13.3ms) Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `intro_tag' for #): 1: <%= intro.intro_tag(enable: true) %> 2: 3: <%= link_to t('intro.admin.title'), intro.admin_tours_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__2777720081523671156_69828709283380' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.1ms) Started GET "/" for ::1 at 2019-08-08 08:49:06 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.7ms) Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `intro_tag' for #): 1: <%= intro.intro_tag(enable: true) %> 2: 3: <%= link_to t('intro.admin.title'), intro.admin_tours_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__2777720081523671156_69828709283380' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms) Started GET "/" for ::1 at 2019-08-08 09:05:56 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (8.2ms) Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined local variable or method `tours_path' for #<#:0x005604ad420920>): 1: <%= intro_tag(enable: true) %> 2: 3: <%= link_to t('intro.admin.title'), intro.admin_tours_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__2880214379369769320_47289043135900' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.2ms) Started GET "/" for ::1 at 2019-08-08 09:06:38 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (7.1ms) Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined local variable or method `tours_path' for #<#:0x005604ad5cccb0>): 1: <%= intro_tag(enable: true) %> 2: 3: <%= link_to t('intro.admin.title'), intro.admin_tours_path %> app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__2880214379369769320_47289043135900' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.9ms) Started GET "/" for ::1 at 2019-08-08 09:06:50 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (545.5ms) Completed 200 OK in 566ms (Views: 566.1ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/shepherd2/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-08-08 09:06:50 +0800 Started GET "/assets/intro/shepherd2/base.self-f8ce036fe30a341f9f3d07811f908c3b2e9a0dbf12cb1924a6dc6a9ede53ac07.css?body=1" for ::1 at 2019-08-08 09:06:50 +0800 Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:06:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 29ms (Views: 0.2ms | ActiveRecord: 1.2ms) Started GET "/" for ::1 at 2019-08-08 09:07:00 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (47.5ms) Completed 200 OK in 58ms (Views: 57.8ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:07:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms) Started GET "/" for ::1 at 2019-08-08 09:07:22 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (102818.1ms) Completed 200 OK in 102840ms (Views: 102839.8ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:09:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 71ms (Views: 0.3ms | ActiveRecord: 1.1ms) Started GET "/" for ::1 at 2019-08-08 09:09:13 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (329.8ms) Completed 200 OK in 347ms (Views: 346.9ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:09:14 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 31ms (Views: 0.3ms | ActiveRecord: 1.3ms) Started GET "/" for ::1 at 2019-08-08 09:09:31 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (50.1ms) Completed 200 OK in 58ms (Views: 57.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:09:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:09:37 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (26.3ms) Completed 200 OK in 106ms (Views: 104.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:09:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started PUT "/intro/admin/tours/17/publish?published=true" for ::1 at 2019-08-08 09:09:41 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"e+MPQg+Pv3ukUfGrfLngFh0qlEsRo/7C1QvcdiffeEFNU8nUDSZ+Jm//sQB6jn5geEPMfqnrrkRUYhPb4vxtWA==", "published"=>"true", "id"=>"17"} Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 17]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-4gfmj3' AND "intro_tours"."id" != 17) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 01:09:41.965740"], ["id", 17]]  (6.0ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 38ms (ActiveRecord: 7.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:09:41 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (21.3ms) Completed 200 OK in 41ms (Views: 39.8ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:09:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 09:09:46 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (20.2ms) Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:09:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 17 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.3ms) Started GET "/" for ::1 at 2019-08-08 09:10:49 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (80.5ms) Completed 200 OK in 93ms (Views: 92.6ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/shepherd/base.self-f8ce036fe30a341f9f3d07811f908c3b2e9a0dbf12cb1924a6dc6a9ede53ac07.css?body=1" for ::1 at 2019-08-08 09:10:49 +0800 Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:10:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 17 AND (touch_count >= 1) Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:10:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (27.9ms) Completed 200 OK in 49ms (Views: 46.6ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:10:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 09:10:59 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (45.3ms) Completed 200 OK in 64ms (Views: 62.0ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 09:10:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 09:11:01 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"1u+zxYLHr6snAEF1vdLG9PSyeNGqPyPSS199ZhfifY/gX3VTgG5u9uyuAd675ViCkdsg5BJ3c1TKNrLL0sFolg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 09:12:40 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (22.6ms) Completed 200 OK in 50ms (Views: 40.4ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 09:12:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 24ms (Views: 0.3ms | ActiveRecord: 1.8ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 09:12:51 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (26.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (36.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (50.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (420.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (431.4ms) Completed 200 OK in 473ms (Views: 452.6ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 09:12:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 24ms (Views: 0.3ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:12:54 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (28.1ms) Completed 200 OK in 49ms (Views: 46.2ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:12:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 09:13:00 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (17.8ms) Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:13:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 17 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 09:13:05 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>17, "tour"=>{"id"=>17}} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 17]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 17 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 17], ["touch_count", 1], ["created_at", "2019-08-08 01:13:05.628882"], ["updated_at", "2019-08-08 01:13:05.628882"]]  (7.2ms) commit transaction Completed 200 OK in 20ms (Views: 0.3ms | ActiveRecord: 8.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:13:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.6ms) Completed 200 OK in 48ms (Views: 46.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:13:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 09:13:12 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (30.0ms) Completed 200 OK in 49ms (Views: 46.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 09:13:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 09:13:14 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"lNQOBWzaTzJfD5VvukCk0frANhjrCXdZ5vWYPu+lymuiZMiTbnOOb5Sh1cS8dzqnn6luLVNBJ99nnFeTKobfcg==", "tour"=>{"route"=>{"simple"=>"", "query"=>""}, "ident"=>"brabr", "controller_path"=>"", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brabrb", "content"=>"bbarbrabbarbarbabrabrabrba bbrabr abrbarba rbrarbabr barbrabrb VEVBR\\\r\n\r\nBRAB\r\n\r\nBRABR", "image_url"=>"/uploads/intro/20190807/1565182180_ybBklXIC.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>".js-intro-admin__button-upload", "placement"=>"right", "z_index"=>"99", "cancel_link"=>"1", "fixed_placement"=>"1"}, {"title"=>"", "content"=>"brabrabrbarbababa", "image_url"=>"/uploads/intro/20190807/1565182293_lpcZjHrE.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"right", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/16/edit" for ::1 at 2019-08-08 09:13:33 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (339.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (350.0ms) Completed 200 OK in 421ms (Views: 400.2ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F16%2Fedit" for ::1 at 2019-08-08 09:13:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/16/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 28ms (Views: 0.4ms | ActiveRecord: 1.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:13:39 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.0ms) Completed 200 OK in 41ms (Views: 39.2ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:13:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 09:13:49 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (26.6ms) Completed 200 OK in 48ms (Views: 46.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 09:13:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-08 09:13:53 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"ERmI11zkFNB2BOPNW01RnUzUDpCgg55sOSNLqHdsEEQnqU5BXk3Vjb2qo2Zdes/rKb1WpRjLzuq4SoQFsk8FXQ=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 09:13:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.4ms) Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-08 09:13:55 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"K4GcD3YWdq+KC0zzo2xKTU8Z9fZ7RnntJX3koq8H/qUdMVqZdL+38kGlDFilW9Q7KnCtw8MOKWukFCsPaiTrvA==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:13:55 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (20.3ms) Completed 200 OK in 40ms (Views: 38.2ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:13:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 09:13:57 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (27.6ms) Completed 200 OK in 49ms (Views: 48.5ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 09:13:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Fsessions%2Fnew" for ::1 at 2019-08-08 09:13:59 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/sessions/new", "tour"=>{}} Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 09:14:02 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CmxBk6CLG8sWoZSQoMaqatVCV1Ui7g+cemCIez/vPzU83IcFoiLalt0P1Dum8TQcsCsPYJqmXxr7CUfW+swqLA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/sessions/new", "query"=>""}, "ident"=>"intro/admin/sessions#new-f0vpaa", "controller_path"=>"intro/admin/sessions", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/sessions#new-f0vpaa' LIMIT 1 SQL (0.4ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/sessions\n action: new\nquery: ''\nsimple: http://localhost:9292/intro/admin/sessions/new\nstrict: false\n"], ["ident", "intro/admin/sessions#new-f0vpaa"], ["controller_path", "intro/admin/sessions"], ["action_name", "new"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: brabr\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 01:14:02.444745"], ["updated_at", "2019-08-08 01:14:02.444745"]]  (3.9ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/18 Completed 302 Found in 42ms (ActiveRecord: 4.6ms) Started GET "/intro/admin/tours/18" for ::1 at 2019-08-08 09:14:02 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"18"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 18]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.3ms) Completed 200 OK in 42ms (Views: 41.2ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F18" for ::1 at 2019-08-08 09:14:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/18"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-08 09:14:04 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"AsUtXnuSlGXzpmS+26VHnorhrpOc60E/8+iOc2iwzhk0devIeTtVODgIJBXdktno74j2piSjEblygUHerZPbAA=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 09:14:05 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 09:14:09 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-08 09:14:24 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"uEleLQ6vR7HlIQbNWCq8FzrEGVlL71QeHvQfGrSOZoWO+Zi7DAaG7C6PRmZeHSJhX61BbPOnBJifndC3ca1znA==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:14:24 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (27.9ms) Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:14:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/18/edit" for ::1 at 2019-08-08 09:14:26 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"18"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 18]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.3ms) Completed 200 OK in 50ms (Views: 47.8ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F18%2Fedit" for ::1 at 2019-08-08 09:14:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/18/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 09:14:32 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"S6gA101XHrZU9CmZ0ROVHVz+ZrQOzFjbfaQImP2dkEF9GMZBT/7f659aaTLXJAtrOZc+gbaECF38zcc1OL6FWA==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/sessions/new", "query"=>""}, "ident"=>"intro/admin/sessions#new-f0vpaa", "controller_path"=>"intro/admin/sessions", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"brabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PUT "/intro/admin/tours/18/publish?published=true" for ::1 at 2019-08-08 09:14:50 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"S6gA101XHrZU9CmZ0ROVHVz+ZrQOzFjbfaQImP2dkEF9GMZBT/7f659aaTLXJAtrOZc+gbaECF38zcc1OL6FWA==", "published"=>"true", "id"=>"18"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 18]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/sessions#new-f0vpaa' AND "intro_tours"."id" != 18) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 01:14:50.267734"], ["id", 18]]  (7.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/18/edit Completed 302 Found in 25ms (ActiveRecord: 8.7ms) Started GET "/intro/admin/tours/18/edit" for ::1 at 2019-08-08 09:14:50 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"18"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 18]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.8ms) Completed 200 OK in 59ms (Views: 57.7ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F18%2Fedit" for ::1 at 2019-08-08 09:14:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/18/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-08 09:14:54 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"2VYZCwW00exbduHJ6wr58sd/TNE04Pk+7aAnWPEqVwHv5t+dBx0QsZDYoWLtPWeEohYU5Iyoqbhsyej1NAlCGA=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 09:14:54 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.4ms) Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 09:14:57 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.5ms) Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 09:14:58 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-08 09:15:05 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FVXFgoeAU+/B3n2y1vlf981UaBshmISQlHCeNb+UIoAj5QMUhSmSsgpwPRnQzsGBqD0wLpnQ1BYVGVGYerc3mQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:15:05 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.3ms) Completed 200 OK in 43ms (Views: 41.9ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:15:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/18/edit" for ::1 at 2019-08-08 09:15:13 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"18"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 18]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (31.8ms) Completed 200 OK in 54ms (Views: 50.7ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F18%2Fedit" for ::1 at 2019-08-08 09:15:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/18/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 09:15:20 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (30.6ms) Completed 200 OK in 54ms (Views: 52.2ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 09:15:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:15:22 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours", "tour"=>{}} Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 09:15:24 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"y6Uq0LcKDFPi0KW0RfAt/V5bSw4ptDMLhf4WM9B0lRz9FexGtaPNDil+5R9Dx7OLOzITO5H8Y40El9meFVeABQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours", "query"=>""}, "ident"=>"intro/admin/tours#index-14k08u", "controller_path"=>"intro/admin/tours", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"bra", "content"=>"brabrb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/tours#index-14k08u' LIMIT 1 SQL (0.3ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/tours\n action: index\nquery: ''\nsimple: http://localhost:9292/intro/admin/tours\nstrict: false\n"], ["ident", "intro/admin/tours#index-14k08u"], ["controller_path", "intro/admin/tours"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: bra\n content: brabrb\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 01:15:24.117088"], ["updated_at", "2019-08-08 01:15:24.117088"]]  (7.1ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/19 Completed 302 Found in 32ms (ActiveRecord: 7.7ms) Started GET "/intro/admin/tours/19" for ::1 at 2019-08-08 09:15:24 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"19"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 19]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.1ms) Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F19" for ::1 at 2019-08-08 09:15:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/19"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PUT "/intro/admin/tours/19/publish?published=true" for ::1 at 2019-08-08 09:15:26 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"G2RwQB0kMtZxYnZgkNWAheRiNF3tOazAWmtVkphvPeIt1LbWH43zi7rMNsuW4h7zgQtsaFVx/EbbApo/XUwo+w==", "published"=>"true", "id"=>"19"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 19]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#index-14k08u' AND "intro_tours"."id" != 19) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 01:15:26.113509"], ["id", 19]]  (9.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/19 Completed 302 Found in 21ms (ActiveRecord: 10.1ms) Started GET "/intro/admin/tours/19" for ::1 at 2019-08-08 09:15:26 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"19"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 19]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.3ms) Completed 200 OK in 48ms (Views: 46.0ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F19" for ::1 at 2019-08-08 09:15:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/19"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:15:27 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (27.1ms) Completed 200 OK in 46ms (Views: 43.1ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:15:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.7ms) Started GET "/" for ::1 at 2019-08-08 09:17:00 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (18.4ms) Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:17:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 17 AND (touch_count >= 1) Completed 200 OK in 28ms (Views: 0.3ms | ActiveRecord: 1.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:17:06 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (21.5ms) Completed 200 OK in 56ms (Views: 53.9ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:17:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/19/edit" for ::1 at 2019-08-08 09:17:09 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"19"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 19]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.0ms) Completed 200 OK in 44ms (Views: 41.5ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F19%2Fedit" for ::1 at 2019-08-08 09:17:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/19/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/17/edit" for ::1 at 2019-08-08 09:17:13 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"17"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 17]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (30.5ms) Completed 200 OK in 54ms (Views: 48.7ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F17%2Fedit" for ::1 at 2019-08-08 09:17:14 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/17/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started DELETE "/intro/admin/tours/17" for ::1 at 2019-08-08 09:17:20 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"57usXZEwoXO/vWuTyS5osa2/N7obLz2LuApvD6EQxSDRC2rLk5lgLnQTKzjPGfbHyNZvj6NnbQ05Y6CiZDPQOQ==", "id"=>"17"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 17]]  (0.1ms) begin transaction Intro::TourHistory Load (0.3ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 17]] SQL (0.3ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 11]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 17]]  (5.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 35ms (ActiveRecord: 6.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:17:20 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.2ms) Completed 200 OK in 43ms (Views: 41.3ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:17:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 09:17:21 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>19, "tour"=>{"id"=>19}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 19]] Intro::TourHistory Load (0.3ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 19 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 19], ["touch_count", 1], ["created_at", "2019-08-08 01:17:21.986162"], ["updated_at", "2019-08-08 01:17:21.986162"]]  (7.3ms) commit transaction Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 8.2ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 09:17:22 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (29.5ms) Completed 200 OK in 52ms (Views: 49.4ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 09:17:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=%2F" for ::1 at 2019-08-08 09:17:31 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"/", "tour"=>{}} Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 09:17:33 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"q7F/c876ydNkgjqm2YGjYKX4/y4rfvBYyvOepgh8zAudAbnlzFMIjq8seg3ftj0WwJGnG5M2oN5LmlELzV/ZEg==", "tour"=>{"route"=>{"simple"=>"/", "query"=>""}, "ident"=>"home#index-av3nhd", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'home#index-av3nhd' LIMIT 1 SQL (0.4ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: home\n action: index\nquery: ''\nsimple: \"/\"\nstrict: false\n"], ["ident", "home#index-av3nhd"], ["controller_path", "home"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: barb\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 01:17:33.473781"], ["updated_at", "2019-08-08 01:17:33.473781"]]  (5.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/20 Completed 302 Found in 27ms (ActiveRecord: 6.4ms) Started GET "/intro/admin/tours/20" for ::1 at 2019-08-08 09:17:33 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"20"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 20]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (38.5ms) Completed 200 OK in 62ms (Views: 59.5ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F20" for ::1 at 2019-08-08 09:17:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/20"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PUT "/intro/admin/tours/20/publish?published=true" for ::1 at 2019-08-08 09:17:34 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"+RgF2BaTaBKSSC2AcqOdZTBHMI1hmMjVHmg+iG7eN/rPqMNOFDqpT1nmbSt0lAMTVS5ouNnQmFOfAfElq/0i4w==", "published"=>"true", "id"=>"20"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 20]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-av3nhd' AND "intro_tours"."id" != 20) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 01:17:34.951818"], ["id", 20]]  (8.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/20 Completed 302 Found in 22ms (ActiveRecord: 9.7ms) Started GET "/intro/admin/tours/20" for ::1 at 2019-08-08 09:17:34 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"20"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 20]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.7ms) Completed 200 OK in 47ms (Views: 44.8ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F20" for ::1 at 2019-08-08 09:17:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/20"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/" for ::1 at 2019-08-08 09:17:38 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (21.8ms) Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:17:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 1.0ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 09:24:23 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (325.8ms) Completed 200 OK in 344ms (Views: 344.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:24:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 50ms (Views: 0.4ms | ActiveRecord: 1.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:24:25 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (58.0ms) Completed 200 OK in 83ms (Views: 80.6ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:24:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/20/edit" for ::1 at 2019-08-08 09:24:28 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"20"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 20]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (22.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (36.2ms) Completed 200 OK in 56ms (Views: 51.9ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F20%2Fedit" for ::1 at 2019-08-08 09:24:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/20/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 09:24:30 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"XqPtQFqWMnVGuzKhGNlQ1LMxQAzUQZ6csARF/rJXBQRoEyvWWD/zKI0Vcgoe7s6i1lgYOWwJzhoxbYpTd3QQHQ==", "tour"=>{"route"=>{"simple"=>"/", "query"=>""}, "ident"=>"home#index-av3nhd", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/20/edit" for ::1 at 2019-08-08 09:27:42 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"20"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 20]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (355.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (366.9ms) Completed 200 OK in 415ms (Views: 394.5ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F20%2Fedit" for ::1 at 2019-08-08 09:27:43 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/20/edit"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 25ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 09:27:45 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Gp6w4OExmB1Yy0+5Brij+kIa+w8YOhukFm+jrfdrDVwsLnZ245hZQJNlDxIAjz2MJ3OjOqBySyKXBmwAMkgYRQ==", "tour"=>{"route"=>{"simple"=>"/", "query"=>""}, "ident"=>"home#index-av3nhd", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:27:48 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (29.8ms) Completed 200 OK in 55ms (Views: 52.3ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:27:48 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/" for ::1 at 2019-08-08 09:27:54 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (18.6ms) Completed 200 OK in 33ms (Views: 32.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:27:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 09:56:10 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>20, "tour"=>{"id"=>20}} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 20]] Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 20], ["touch_count", 1], ["created_at", "2019-08-08 01:56:10.869665"], ["updated_at", "2019-08-08 01:56:10.869665"]]  (5.5ms) commit transaction Completed 200 OK in 27ms (Views: 0.2ms | ActiveRecord: 7.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:56:12 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (19.8ms) Completed 200 OK in 40ms (Views: 37.6ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:56:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.8ms) Intro::TourHistory Load (0.9ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories"  (0.1ms) begin transaction SQL (0.2ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 10]]  (5.6ms) commit transaction  (0.1ms) begin transaction SQL (0.1ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 12]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.1ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 13]]  (5.3ms) commit transaction Started GET "/" for ::1 at 2019-08-08 09:58:27 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (2.4ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:58:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 09:58:46 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (2.1ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 09:58:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 09:58:50 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>20, "tour"=>{"id"=>20}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 20]] Intro::TourHistory Load (0.3ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 20], ["touch_count", 1], ["created_at", "2019-08-08 01:58:50.748220"], ["updated_at", "2019-08-08 01:58:50.748220"]]  (7.2ms) commit transaction Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 8.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 09:58:51 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (33.8ms) Completed 200 OK in 53ms (Views: 51.4ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 09:58:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 09:58:53 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>19, "tour"=>{"id"=>19}} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 19]] Intro::TourHistory Load (0.4ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 19 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 19], ["touch_count", 1], ["created_at", "2019-08-08 01:58:53.326733"], ["updated_at", "2019-08-08 01:58:53.326733"]]  (5.8ms) commit transaction Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 7.0ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 09:58:54 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>11, "tour"=>{"id"=>11}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 11], ["touch_count", 1], ["created_at", "2019-08-08 01:58:54.458174"], ["updated_at", "2019-08-08 01:58:54.458174"]]  (7.3ms) commit transaction Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 8.0ms) Started GET "/" for ::1 at 2019-08-08 10:53:05 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.6ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 349ms (Views: 348.7ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:53:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 53ms (Views: 0.4ms | ActiveRecord: 1.6ms) Started GET "/" for ::1 at 2019-08-08 10:53:09 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (2.5ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:53:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 41ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 10:53:10 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.8ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:53:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 10:53:27 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.6ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 344ms (ActiveRecord: 0.5ms) ActionView::Template::Error (undefined method `cache' for Intro:Module): 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: <%= intro_tag %> 9: 10: 11: app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__3230468209607444085_47098190556860' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.1ms) Started GET "/" for ::1 at 2019-08-08 10:56:25 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.5ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 345ms (ActiveRecord: 0.4ms) ActionView::Template::Error (wrong number of arguments (2 for 0)): 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: <%= intro_tag %> 9: 10: 11: app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__3316139296435188245_47089516511100' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.8ms) Started GET "/" for ::1 at 2019-08-08 10:56:50 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.6ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.2ms) ActionView::Template::Error (wrong number of arguments (2 for 0)): 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: <%= intro_tag %> 9: 10: 11: app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb__3316139296435188245_47089516511100' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.2ms) Started GET "/" for ::1 at 2019-08-08 10:56:59 +0800 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (10.8ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 360ms (Views: 359.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:57:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 51ms (Views: 0.3ms | ActiveRecord: 1.2ms) Started GET "/" for ::1 at 2019-08-08 10:57:02 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.6ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 68ms (Views: 67.0ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:57:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/" for ::1 at 2019-08-08 10:57:04 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.1ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:57:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 10:57:05 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.4ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:57:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 10:57:06 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.0ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:57:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 10:57:19 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.8ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 28ms (Views: 27.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:57:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 10:58:20 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (10.6ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 38613ms (Views: 38611.5ms | ActiveRecord: 1.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 10:58:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 20 AND (touch_count >= 1) Completed 200 OK in 36ms (Views: 0.2ms | ActiveRecord: 1.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:10 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (348.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (358.1ms) Completed 200 OK in 389ms (Views: 377.5ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:11 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 82ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started DELETE "/intro/admin/tours/20" for ::1 at 2019-08-08 11:01:45 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"CAL+W2wqi/HT3vjXz5F0Z4YKP4YpC5zRsrBRmhKnvu0+sjjNboNKrBhwuHzJpuoR42Nns5FDzFcz2Z4314Sr9A==", "id"=>"20"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 20]]  (0.1ms) begin transaction Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 20]] SQL (0.3ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 14]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 20]]  (3.7ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 31ms (ActiveRecord: 4.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:45 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (23.5ms) Completed 200 OK in 43ms (Views: 41.2ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started DELETE "/intro/admin/tours/16" for ::1 at 2019-08-08 11:01:48 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"W+sKIl1CjU/05V4dsf/nYNxPuyafWAJW5N/zL6GN0ZVtW8y0X+tMEj9LHra3yHkWuSbjEycQUtBltjyCZK7EjA==", "id"=>"16"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 16]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 16]] SQL (0.3ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 16]]  (7.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 12ms (ActiveRecord: 7.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:48 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (20.4ms) Completed 200 OK in 42ms (Views: 40.1ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:48 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" IN (11, 19) AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started DELETE "/intro/admin/tours/19" for ::1 at 2019-08-08 11:01:50 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"6LxiyPVDvFfNlP8yaDIxXI7VHtWgDNdAJy/luaJbDKneDKRe9+p9CgY6v5luBa8q67xG4BhEh8amRioUZ3gZsA==", "id"=>"19"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 19]]  (0.0ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 19]] SQL (0.1ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 15]] SQL (0.1ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 19]]  (5.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 10ms (ActiveRecord: 6.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:50 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.1ms) Completed 200 OK in 49ms (Views: 47.1ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/tours/18" for ::1 at 2019-08-08 11:01:52 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"W10fTEJoL50J+U3u4KDfMJZGUwfLM0BgbNm3dWFeSBNt7dnaQMHuwMJXDUXml0FG8y8LMnN7EObtsHjYpH1dCg==", "id"=>"18"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 18]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 18]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 18]]  (7.3ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 12ms (ActiveRecord: 7.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:52 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.4ms) Completed 200 OK in 45ms (Views: 43.1ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started DELETE "/intro/admin/tours/15" for ::1 at 2019-08-08 11:01:54 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"9XlF8A6d7+OpYuY3g/o2127S/k9Ar/VAhD3J8ihqdf7DyYNmDDQuvmLMppyFzaihC7umevjnpcYFVAZf7Ulg5w==", "id"=>"15"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 15]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 15]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 15]]  (7.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 12ms (ActiveRecord: 7.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:54 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.4ms) Completed 200 OK in 37ms (Views: 35.9ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started DELETE "/intro/admin/tours/13" for ::1 at 2019-08-08 11:01:55 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"Dfu5sC6MpEU1LXokXwP62EinEOdd5LkMIHKf70tWHwg7S38mLCVlGP6DOo9ZNGSuLc5I0uWs6YqhG1BCjnUKEQ==", "id"=>"13"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 13]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 13]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 13]]  (5.3ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 22ms (ActiveRecord: 5.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:55 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.3ms) Completed 200 OK in 42ms (Views: 40.1ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:55 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/tours/12" for ::1 at 2019-08-08 11:01:57 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"HoaDPU8CTyjAlpSneWSoYm0gcP4WVZn70rgvYlO0XF4oNkWrTauOdQs41Ax/UzYUCEkoy64dyX1T0eDPlpdJRw==", "id"=>"12"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 12]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 12]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 12]]  (5.5ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 11ms (ActiveRecord: 6.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:57 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.9ms) Completed 200 OK in 39ms (Views: 37.7ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 11 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/tours/11" for ::1 at 2019-08-08 11:01:59 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"Sy9Sw5CF6Vr+EGzSIMrLBhSgmB9W2zRaNJRsoeyCY5d9n5RVkiwoBzW+LHkm/VVwccnAKu6TZNy1/aMMKaF2jg==", "id"=>"11"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 11]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 11]] SQL (0.2ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 16]] SQL (0.1ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 11]]  (7.2ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 13ms (ActiveRecord: 7.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:01:59 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (16.6ms) Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:01:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:02:01 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.2ms) Completed 200 OK in 37ms (Views: 35.7ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:02:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:02:07 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.4ms) Completed 200 OK in 37ms (Views: 35.1ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:02:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/" for ::1 at 2019-08-08 11:02:18 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.8ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:02:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 11:02:20 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.3ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 30ms (Views: 29.1ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:02:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:02:21 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.0ms) User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:02:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:02:21 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.2ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:02:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:02:22 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.6ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:02:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:03:06 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (8.7ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 347ms (Views: 346.5ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:03:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 32ms (Views: 0.3ms | ActiveRecord: 1.2ms) Started GET "/" for ::1 at 2019-08-08 11:03:08 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.8ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-08-08 11:03:09 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.3ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-08-08 11:03:10 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.8ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 52ms (Views: 51.5ms | ActiveRecord: 0.3ms) Started GET "/" for ::1 at 2019-08-08 11:03:11 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.1ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.3ms) Started GET "/" for ::1 at 2019-08-08 11:03:11 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.7ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:03:13 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.3ms) Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:03:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 11:03:14 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.6ms) Completed 200 OK in 64ms (Views: 56.2ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:03:14 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=%2F" for ::1 at 2019-08-08 11:03:20 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"/", "tour"=>{}} Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 11:03:21 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0fhH9AfroLCw43vAc7c4oPEZY6QRXU/3v8RG5atIxFbnSIFiBUJh7XtNO2t1gKbWlHA7kakVH3E+rYlIbmvRTw==", "tour"=>{"route"=>{"simple"=>"/", "query"=>""}, "ident"=>"home#index-o1yted", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'home#index-o1yted' LIMIT 1 SQL (0.4ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: home\n action: index\nquery: ''\nsimple: \"/\"\nstrict: false\n"], ["ident", "home#index-o1yted"], ["controller_path", "home"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 03:03:21.674325"], ["updated_at", "2019-08-08 03:03:21.674325"]]  (5.7ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/21 Completed 302 Found in 36ms (ActiveRecord: 6.5ms) Started GET "/intro/admin/tours/21" for ::1 at 2019-08-08 11:03:21 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"21"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 21]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.9ms) Completed 200 OK in 45ms (Views: 42.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F21" for ::1 at 2019-08-08 11:03:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/21"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:03:24 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.0ms) Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:03:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 11:03:31 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.6ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:03:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:03:33 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.3ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-08-08 11:03:35 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.7ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.3ms) Started GET "/" for ::1 at 2019-08-08 11:03:36 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.8ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-08-08 11:03:37 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.8ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-08-08 11:03:37 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.7ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-08-08 11:03:38 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.1ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:03:56 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (20.4ms) Completed 200 OK in 41ms (Views: 38.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:03:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started PUT "/intro/admin/tours/21/publish?published=true" for ::1 at 2019-08-08 11:04:05 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"ZLNm/SrF+ywYK3XxHEOP/RkJ+WJyQAox8q/GocTDv+lSA6BrKGw6cdOFNVoadBGLfGChV8oIWrdzxgkMAeCq8A==", "published"=>"true", "id"=>"21"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 21]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-o1yted' AND "intro_tours"."id" != 21) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 03:04:05.478074"], ["id", 21]]  (8.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 21ms (ActiveRecord: 9.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:04:05 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (18.8ms) Completed 200 OK in 44ms (Views: 42.9ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:04:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 11:04:13 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.5ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:04:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 21 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 11:04:15 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>21, "tour"=>{"id"=>21}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 21]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 21 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 21], ["touch_count", 1], ["created_at", "2019-08-08 03:04:15.386868"], ["updated_at", "2019-08-08 03:04:15.386868"]]  (5.7ms) commit transaction Completed 200 OK in 17ms (Views: 0.4ms | ActiveRecord: 6.7ms) Started GET "/" for ::1 at 2019-08-08 11:04:16 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.1ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 36ms (Views: 35.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:04:16 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 21 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 11:04:17 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.8ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:04:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 21 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 11:04:18 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.7ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:04:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 21 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:04:19 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.6ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:04:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 21 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 11:04:48 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.6ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:04:48 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 21 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:04:49 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.7ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:04:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 21 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:05:29 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (22.7ms) Completed 200 OK in 47ms (Views: 44.8ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:05:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/tours/21" for ::1 at 2019-08-08 11:05:32 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"FyGevmMNcQ8TgWikNgb++3M/qZE1WLvG4Pz1EdkH7O0hkVgoYaSwUtgvKA8wMWCNFlbxpI0Q60BhlTq8HCT59A==", "id"=>"21"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 21]]  (0.1ms) begin transaction Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 21]] SQL (0.3ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 17]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 21]]  (7.8ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 30ms (ActiveRecord: 8.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:05:32 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (12.8ms) Completed 200 OK in 37ms (Views: 35.3ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:05:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 11:05:45 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.8ms) Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:05:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 11:05:50 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (25.3ms) Completed 200 OK in 44ms (Views: 42.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:05:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 11:06:00 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (27.7ms) Completed 200 OK in 45ms (Views: 44.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:06:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 11:06:38 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (23.9ms) Completed 200 OK in 43ms (Views: 41.8ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:06:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:06:47 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 11:06:51 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+Rr9XatI15itPRFl/wTsb/AENWHqvLeD6hYK72IGUq/PqjvLqeEWxWaTUc75M3IZlW1tVFL05wVrf8VCpyVHtg==", "tour"=>{"route"=>{"simple"=>"http://localhost:9292/intro/admin/tours/new", "query"=>""}, "ident"=>"intro/admin/tours#new-8chlyp", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"br", "content"=>"brabrba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'intro/admin/tours#new-8chlyp' LIMIT 1 SQL (0.3ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: intro/admin/tours\n action: new\nquery: ''\nsimple: http://localhost:9292/intro/admin/tours/new\nstrict: false\n"], ["ident", "intro/admin/tours#new-8chlyp"], ["controller_path", "intro/admin/tours"], ["action_name", "new"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: br\n content: brabrba\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 03:06:51.741969"], ["updated_at", "2019-08-08 03:06:51.741969"]]  (5.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/22 Completed 302 Found in 28ms (ActiveRecord: 6.0ms) Started GET "/intro/admin/tours/22" for ::1 at 2019-08-08 11:06:51 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"22"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 22]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (31.4ms) Completed 200 OK in 51ms (Views: 49.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F22" for ::1 at 2019-08-08 11:06:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/22"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started PUT "/intro/admin/tours/22/publish?published=true" for ::1 at 2019-08-08 11:07:03 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"+pV/jbhyYHjZKyX3cS1AdBOD7vZ7RVF6jqYhLe25/ZHMJbkbutuhJRKFZVx3Gt4Cduq2w8MNAfwPz+6AKJroiA==", "published"=>"true", "id"=>"22"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 22]]  (0.1ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'intro/admin/tours#new-8chlyp' AND "intro_tours"."id" != 22) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 03:07:04.002663"], ["id", 22]]  (5.5ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/22 Completed 302 Found in 23ms (ActiveRecord: 6.4ms) Started GET "/intro/admin/tours/22" for ::1 at 2019-08-08 11:07:04 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"22"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 22]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.8ms) Completed 200 OK in 44ms (Views: 43.3ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F22" for ::1 at 2019-08-08 11:07:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/22"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/22" for ::1 at 2019-08-08 11:07:11 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"22"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 22]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (28.4ms) Completed 200 OK in 49ms (Views: 46.9ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F22" for ::1 at 2019-08-08 11:07:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/22"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/22" for ::1 at 2019-08-08 11:07:13 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"22"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 22]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (30.8ms) Completed 200 OK in 55ms (Views: 53.4ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F22" for ::1 at 2019-08-08 11:07:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/22"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:07:18 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (19.4ms) Completed 200 OK in 41ms (Views: 38.8ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:07:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 11:07:19 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.7ms) Completed 200 OK in 54ms (Views: 52.5ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:07:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 22 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:07:27 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.6ms) Completed 200 OK in 40ms (Views: 37.6ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:07:27 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:07:28 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (18.6ms) Completed 200 OK in 38ms (Views: 36.4ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:07:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started DELETE "/intro/admin/tours/22" for ::1 at 2019-08-08 11:08:03 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"CyNHqsgg0pzl7+ldm0ojEpLBGB8PQVUX4VSOuMfc3zA9k4E8yokTwS5Bqfadfb1k96hAKrcJBZFgPUEVAv/KKQ==", "id"=>"22"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 22]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 22]] SQL (0.2ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 22]]  (7.3ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 12ms (ActiveRecord: 7.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:08:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (13.3ms) Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:08:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 11:08:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (26.1ms) Completed 200 OK in 50ms (Views: 48.0ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:08:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/route?path=%2F" for ::1 at 2019-08-08 11:08:10 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"/", "tour"=>{}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 11:08:12 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ljQpaqCaS/ZAl9M2vCcfY9mf0w3o0pjZm/iD1Ctf2sCghO/8ojOKq4s5k526EIEVvPaLOFCayF8akUx57nzP2Q==", "tour"=>{"route"=>{"simple"=>"/", "query"=>""}, "ident"=>"home#index-bjnrw7", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'home#index-bjnrw7' LIMIT 1 SQL (0.2ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: home\n action: index\nquery: ''\nsimple: \"/\"\nstrict: false\n"], ["ident", "home#index-bjnrw7"], ["controller_path", "home"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 03:08:12.458435"], ["updated_at", "2019-08-08 03:08:12.458435"]]  (5.4ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/23 Completed 302 Found in 22ms (ActiveRecord: 5.8ms) Started GET "/intro/admin/tours/23" for ::1 at 2019-08-08 11:08:12 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"23"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 23]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (37.6ms) Completed 200 OK in 57ms (Views: 56.3ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F23" for ::1 at 2019-08-08 11:08:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/23"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started PUT "/intro/admin/tours/23/publish?published=true" for ::1 at 2019-08-08 11:08:15 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"Shh+qC37G9j7weQn+5G/+6t2udM4woDzXEiHT3uYcwl8qLg+L1LahTBvpIz9piGNzh/h5oCK0HXdIUjivrtmEA==", "published"=>"true", "id"=>"23"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 23]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-bjnrw7' AND "intro_tours"."id" != 23) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 03:08:15.174735"], ["id", 23]]  (7.1ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/23 Completed 302 Found in 20ms (ActiveRecord: 7.8ms) Started GET "/intro/admin/tours/23" for ::1 at 2019-08-08 11:08:15 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"23"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 23]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.5ms) Completed 200 OK in 48ms (Views: 46.7ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F23" for ::1 at 2019-08-08 11:08:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/23"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:08:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (20.5ms) Completed 200 OK in 47ms (Views: 45.2ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:08:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:08:18 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (19.8ms) Completed 200 OK in 40ms (Views: 38.6ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:08:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:08:22 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.9ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 23 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/" for ::1 at 2019-08-08 11:08:25 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.7ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 23 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.6ms) Started GET "/" for ::1 at 2019-08-08 11:08:26 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.4ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 23 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 11:08:27 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>23, "tour"=>{"id"=>23}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 23]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 23 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 23], ["touch_count", 1], ["created_at", "2019-08-08 03:08:27.855484"], ["updated_at", "2019-08-08 03:08:27.855484"]]  (7.0ms) commit transaction Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 7.8ms) Started GET "/" for ::1 at 2019-08-08 11:08:29 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.0ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 31ms (Views: 30.1ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 23 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:08:30 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (21.8ms) Completed 200 OK in 45ms (Views: 42.9ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:08:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/tours/23" for ::1 at 2019-08-08 11:08:33 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"GG1pxxF+jsyeuBYpkAZjwM48+9DSQxZShewyLPMVOkYu3a9RE9dPkVUWVoKWMf22q1Wj5WoLRtQEhf2BNjYvXw==", "id"=>"23"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 23]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 23]] SQL (0.2ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 18]] SQL (0.1ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 23]]  (3.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 10ms (ActiveRecord: 4.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:08:33 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (12.6ms) Completed 200 OK in 39ms (Views: 37.9ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:08:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:08:37 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.0ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 11:08:39 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.7ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-08-08 11:08:40 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (5.1ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.2ms) Started GET "/" for ::1 at 2019-08-08 11:08:41 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.8ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:08:42 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.6ms) Completed 200 OK in 48ms (Views: 45.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:08:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 11:08:43 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.8ms) Completed 200 OK in 43ms (Views: 41.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 11:08:44 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=%2F" for ::1 at 2019-08-08 11:08:46 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"/", "tour"=>{}} Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 11:08:47 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"YuRDUp302bdd11YY+tjtfi989zMShy/R+avLvxucwQdUVIXEn10Y6pZ5FrP873MIShWvBqrPf1d4wgQS3r/UHg==", "tour"=>{"route"=>{"simple"=>"/", "query"=>""}, "ident"=>"home#index-mo9gts", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'home#index-mo9gts' LIMIT 1 SQL (0.3ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: home\n action: index\nquery: ''\nsimple: \"/\"\nstrict: false\n"], ["ident", "home#index-mo9gts"], ["controller_path", "home"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 03:08:47.893120"], ["updated_at", "2019-08-08 03:08:47.893120"]]  (4.2ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/24 Completed 302 Found in 25ms (ActiveRecord: 4.8ms) Started GET "/intro/admin/tours/24" for ::1 at 2019-08-08 11:08:47 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"24"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 24]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.4ms) Completed 200 OK in 46ms (Views: 44.7ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F24" for ::1 at 2019-08-08 11:08:48 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/24"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started PUT "/intro/admin/tours/24/publish?published=true" for ::1 at 2019-08-08 11:08:49 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"8xyzKYDG8KWN3oVdxeaWopqB4iYB//Rg+o8/EGDuflfFrHW/gm8x+EZwxfbD0QjU/+i6E7m3pOZ75vC9pc1rTg==", "published"=>"true", "id"=>"24"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 24]]  (0.1ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-mo9gts' AND "intro_tours"."id" != 24) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 03:08:49.660081"], ["id", 24]]  (8.7ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/24 Completed 302 Found in 23ms (ActiveRecord: 9.5ms) Started GET "/intro/admin/tours/24" for ::1 at 2019-08-08 11:08:49 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"24"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 24]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.0ms) Completed 200 OK in 49ms (Views: 47.5ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F24" for ::1 at 2019-08-08 11:08:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/24"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:08:54 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.3ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 24 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.5ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 11:08:57 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>24, "tour"=>{"id"=>24}} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 24]] Intro::TourHistory Load (0.3ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 24 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 24], ["touch_count", 1], ["created_at", "2019-08-08 03:08:57.093625"], ["updated_at", "2019-08-08 03:08:57.093625"]]  (5.3ms) commit transaction Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 6.4ms) Started GET "/" for ::1 at 2019-08-08 11:08:58 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.4ms) User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 24 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-08-08 11:08:58 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.0ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 24 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 11:08:59 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.3ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 11:08:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 24 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:09:00 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (18.1ms) Completed 200 OK in 41ms (Views: 37.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:09:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/tours/24" for ::1 at 2019-08-08 11:09:03 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"M5wQ22Fecu/JmlIiA1CXaO/B/ZlMXy3IsVk9c65dJ1QFLNZNY/ezsgI0EokFZwkeiqilrPQXfU4wMPLea34yTQ==", "id"=>"24"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 24]]  (0.1ms) begin transaction Intro::TourHistory Load (0.1ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 24]] SQL (0.2ms) DELETE FROM "intro_tour_histories" WHERE "intro_tour_histories"."id" = ? [["id", 19]] SQL (0.1ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 24]]  (5.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 12ms (ActiveRecord: 6.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 11:09:03 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.8ms) Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 11:09:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:46:03 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (317.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (326.6ms) Completed 200 OK in 360ms (Views: 349.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:46:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 29ms (Views: 0.3ms | ActiveRecord: 1.0ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-08 15:46:12 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CiD4cQ9pqbTR/VsOLAK17OiMH2qFpLn1abTmLbiJAk48kD7nDcBo6RpTG6UqNSuajeVHXz3s6XPo3SmAfaoXVw==", "commit"=>"Sign out"} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 15:46:12 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-08 15:46:13 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"APECAiibPj4/osfNIMQuM6+IUscsT4qI02AJGV6f4vw2QcSUKjL/Y/QMh2Ym87BFyuEK8pQH2g5SCca0m7z35Q==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:46:13 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (10.2ms) Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:46:13 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:46:48 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.9ms) Completed 200 OK in 84ms (Views: 82.9ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:46:49 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:46:49 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.2ms) Completed 200 OK in 28ms (Views: 25.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:46:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-08 15:46:53 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"3XHLQ5YQGKd2jCBE+SEF4CLYwT8AC9wnECE06KiDs6rrwQ3VlLnZ+r0iYO//FpuWR7GZCrhDjKGRSPtFbaCmsw==", "commit"=>"Sign out"} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 15:46:53 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-08 15:46:54 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rd7wPxbau8QJe/BN1Y5U2F26kmLPmP7qOZwMP2sTMkmbbjapFHN6mcLVsObTucquONPKV3fQrmy49cOSrjAnUA==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:46:54 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (9.9ms) Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:46:55 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 15:46:58 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (31.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (44.1ms) Completed 200 OK in 70ms (Views: 60.2ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 15:46:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/route?path=brbarba" for ::1 at 2019-08-08 15:47:01 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"brbarba", "tour"=>{}} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 15:47:03 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JxLHpW8C+Bp1qfKQyJAq1oChgiZMjQzBvg/cFHkzHdARogEzbas5R74HsjvOp7Sg5cjaE/TFXEc/ZhO5vBAIyQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brab' LIMIT 1 SQL (0.3ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: \nquery: ''\nsimple: brbarba\nstrict: false\n"], ["ident", "brab"], ["controller_path", "brab"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: ''\n content: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 07:47:03.628809"], ["updated_at", "2019-08-08 07:47:03.628809"]]  (5.5ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/25 Completed 302 Found in 27ms (ActiveRecord: 6.0ms) Started GET "/intro/admin/tours/25" for ::1 at 2019-08-08 15:47:03 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.9ms) Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 15:47:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/25/publish?published=true" for ::1 at 2019-08-08 15:47:05 +0800 ActionController::RoutingError (No route matches [GET] "/intro/admin/tours/25/publish"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.3ms) Started GET "/intro/admin/tours/25" for ::1 at 2019-08-08 15:50:24 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.0ms) Completed 200 OK in 67ms (Views: 63.6ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/link.self-1411109c37d05e2c88d26c58bbe8e2285053057afcadcfa9b7f798aae8e6d5ba.css?body=1" for ::1 at 2019-08-08 15:50:24 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 15:50:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/25" for ::1 at 2019-08-08 15:54:01 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.4ms) Completed 200 OK in 127ms (Views: 125.2ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/form.self-89179cfdbb976bca0e72f4e75331ef6c3f9a6de58c91fb685954c68fdd20f383.css?body=1" for ::1 at 2019-08-08 15:54:01 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 15:54:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-08 15:54:06 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"RdygoYNS1Lea7N9PVnQgD8czIeFkhYP8Gtg5nmRnwodzbGY3gfsV6lFCn+RQQ755olp51NzN03qbsfYzoUTXng==", "commit"=>"Sign out"} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 15:54:06 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-08 15:54:08 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ozp1Fc9DvYF3kE3YlqI5NY9hD/b4hj1UYiLibQcB3hYNirODzep83Lw+DXOQladD6ghXw0DObdLjSy3AwiLLDw==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:54:08 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (13.6ms) Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:54:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:54:32 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.1ms) Completed 200 OK in 99ms (Views: 97.7ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/form.self-b661905d2dc4ace167bb44216cf37e3878decbed286b7b02df2e0b0ea15c3a72.css?body=1" for ::1 at 2019-08-08 15:54:32 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:54:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-08 15:54:33 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"o6mF7X33uxb5rhnsr6MOHZNP73cggxoI8t6KUuFAgB6VGUN7f156SzIAWUeplJBr9ia3QpjLSo5zt0X/JGOVBw==", "commit"=>"Sign out"} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 15:54:33 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-08 15:54:35 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"MloXbKbAU1HVXJw40uLOEc8hFOwccHQbHIqhz4r33wwE6tH6pGmSDB7y3JPU1VBnqkhM2aQ4JJ2d425iT9TKFQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:54:35 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.8ms) Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:54:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 15:54:46 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.1ms) Completed 200 OK in 106ms (Views: 104.4ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/form.self-ee1f6d34a2dd7870b14e38f4519794e6ac958e9830638993cfc37fb9f0807ef5.css?body=1" for ::1 at 2019-08-08 15:54:46 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 15:54:46 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 16:03:57 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (619.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (629.1ms) Completed 200 OK in 693ms (Views: 681.5ms | ActiveRecord: 0.4ms) Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2019-08-08 16:03:58 +0800 Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2019-08-08 16:03:58 +0800 Started GET "/assets/intro/admin/application.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2019-08-08 16:03:58 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 16:03:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 71ms (Views: 0.4ms | ActiveRecord: 1.0ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-08 16:04:00 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"tK4zsqIroLnC1zGGba3hJHDz/WkPpjLWsxedEFicBVuCHvUkoIJh5Al5cS1rmn9SFZqlXLfuYlAyflK9nb8QQg=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 16:04:00 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.4ms) Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-08 16:04:02 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7XABHknbW//QIuBi9oHDelIeYCGuOZoaLveYd3Ygw6vbwMeIS3KaohuMoMnwtl0MN3c4FBZxypyvnlfaswPWsg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 16:04:02 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (11.5ms) Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 16:04:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 16:04:04 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (17.7ms) Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 16:04:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 16:04:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (35.9ms) Completed 200 OK in 56ms (Views: 54.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 16:04:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 16:18:32 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (72.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (81.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (83.1ms) Completed 500 Internal Server Error in 86ms (ActiveRecord: 0.0ms) ActionView::Template::Error (undefined method `text_field_tag' for #): 88:
89:
90: <%= f.label :expired_at, t('intro.admin.tour.expired_time') %> 91: <%= f.text_field_tag :expired_at, type: :date %> 92:
93:
94:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:91:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___4413095567638296794_70253748435520' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb___4413095567638296794_70253748435520' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:11:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___904264080242178946_70253742765360' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:19:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__1409665055294463210_47461598947100' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb:10:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_new_html_erb___904264080242178946_70253742765360' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 16:18:43 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (22.4ms) Completed 200 OK in 46ms (Views: 44.6ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 16:18:43 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 16:18:50 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (21.8ms) Completed 200 OK in 38ms (Views: 37.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 16:18:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 16:18:57 +0800 Processing by Intro::Admin::ToursController#new as HTML Redirected to http://localhost:9292/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-08 16:18:57 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2019-08-08 16:18:57 +0800 Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2019-08-08 16:18:57 +0800 Started GET "/assets/intro/admin/application.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2019-08-08 16:18:57 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-08-08 16:25:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.1ms) Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 16:25:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/25/edit" for ::1 at 2019-08-08 16:25:20 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (10.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (15.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (32.5ms) Completed 200 OK in 56ms (Views: 50.7ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25%2Fedit" for ::1 at 2019-08-08 16:25:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:9292/intro/admin/tours/25/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:25:24 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kVgAErQqG1ygupq+TajYG3PFjsPw1ZSodGzU1l3gac+n6MaEtoPaAWsU2hVLn0ZtFqzW9kidxC71BRt7mMN81g==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"brbar", "content"=>"barbarba", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:25:50 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"kVgAErQqG1ygupq+TajYG3PFjsPw1ZSodGzU1l3gac+n6MaEtoPaAWsU2hVLn0ZtFqzW9kidxC71BRt7mMN81g==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: \"新版工作台已经上线啦\"\n content: \"赶紧点击我进入新版工作台吧!!\"\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-08 08:25:50.470082"], ["id", 25]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (15.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (16.3ms) Completed 200 OK in 62ms (Views: 31.5ms | ActiveRecord: 6.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:25:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:25:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"aKvRtqunj3hyl6HP6xQVmq04V3cxJ0AYW3RkRG4/zXxeGxcgqQ5OJbk54WTtI4vsyFEPQolvEJ7aHavpqxzYZQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:26:08 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:26:09 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"aKvRtqunj3hyl6HP6xQVmq04V3cxJ0AYW3RkRG4/zXxeGxcgqQ5OJbk54WTtI4vsyFEPQolvEJ7aHavpqxzYZQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: \"新版工作台已经上线啦\"\n content: \"赶紧点击我进入新版工作台吧!!\"\n image_url: \"/uploads/intro/20190808/1565252768_mkEyfJDe.png\"\n image_width: '295'\n image_height: '171'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-08 08:26:09.423269"], ["id", 25]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.2ms) Completed 200 OK in 52ms (Views: 33.3ms | ActiveRecord: 5.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:26:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:26:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:26:22 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: \"新版工作台已经上线啦\"\n content: \"赶紧点击我进入新版工作台吧!!\"\n image_url: \"/uploads/intro/20190808/1565252768_mkEyfJDe.png\"\n image_width: '295'\n image_height: '171'\n image_placement: top\n element: ''\n placement: left\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-08 08:26:23.010095"], ["id", 25]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.6ms) Completed 200 OK in 66ms (Views: 46.2ms | ActiveRecord: 7.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:26:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:26:24 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"bUlwJuB7PADUR49HIQH1eRnddG9cXUDuRAzFAElXBAlb+baw4tL9XR/pz+wnNmsPfLQsWuQVEGjFZQqtjHQREA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:26:33 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"bUlwJuB7PADUR49HIQH1eRnddG9cXUDuRAzFAElXBAlb+baw4tL9XR/pz+wnNmsPfLQsWuQVEGjFZQqtjHQREA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left-end", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:26:39 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"bUlwJuB7PADUR49HIQH1eRnddG9cXUDuRAzFAElXBAlb+baw4tL9XR/pz+wnNmsPfLQsWuQVEGjFZQqtjHQREA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:26:49 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"bUlwJuB7PADUR49HIQH1eRnddG9cXUDuRAzFAElXBAlb+baw4tL9XR/pz+wnNmsPfLQsWuQVEGjFZQqtjHQREA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:30:34 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"bUlwJuB7PADUR49HIQH1eRnddG9cXUDuRAzFAElXBAlb+baw4tL9XR/pz+wnNmsPfLQsWuQVEGjFZQqtjHQREA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:32:52 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.0ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:32:52.731382"], ["id", 25]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (74.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (75.9ms) Completed 200 OK in 110ms (Views: 90.0ms | ActiveRecord: 7.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:32:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:32:54 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"FMo8qLmmoHXjmS5oTSJ1ngmredyoKru0QzGpOFntIf8ievo+uw9hKCg3bsNLFevobMIh6RBi6zLCWGaVnM405g==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:33:32 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:33:32.496446"], ["id", 25]]  (5.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (74.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (76.2ms) Completed 200 OK in 123ms (Views: 99.5ms | ActiveRecord: 5.9ms) Started GET "/assets/intro/shepherd/base.self-ed12924d5ee42e7b8d08d6c94b1e777dbc4b0d14a9f9d30d8aaa61184dc676b8.css?body=1" for ::1 at 2019-08-08 16:33:32 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:33:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:33:34 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"qAtV34VQljCYoWouZ8HSP0S7SSZQC5p6OAYWhEUdqzWeu5NJh/lXbVMPKoVh9kxJIdIRE+hDyvy5b9kpgD6+LA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:34:23 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:34:23.238678"], ["id", 25]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (48.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (50.1ms) Completed 200 OK in 88ms (Views: 65.8ms | ActiveRecord: 7.8ms) Started GET "/assets/intro/shepherd/base.self-09a21f313037ace8c9f59dcc8611ab8176d2fe996a4c9f3f1da25e4d519af6e7.css?body=1" for ::1 at 2019-08-08 16:34:23 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:34:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:35:41 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:35:41.451015"], ["id", 25]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (82.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (86.7ms) Completed 500 Internal Server Error in 112ms (ActiveRecord: 7.8ms) ActionView::Template::Error (Invalid CSS after "$": expected identifier, was "$shepherd-conte..."): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tag(enable: true) %> 3: 4:
5:
app/assets/stylesheets/intro/shepherd/_variables.scss:10 Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (23.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:36:16 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:36:16.028313"], ["id", 25]]  (8.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (28.9ms) Completed 500 Internal Server Error in 50ms (ActiveRecord: 9.0ms) ActionView::Template::Error (Undefined variable: "$shepher-title-font-size".): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tag(enable: true) %> 3: 4:
5:
app/assets/stylesheets/intro/shepherd/base.scss:46 Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:36:44 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:36:44.623280"], ["id", 25]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (393.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (398.5ms) Completed 500 Internal Server Error in 476ms (ActiveRecord: 6.7ms) ActionView::Template::Error (Undefined variable: "$shepher-title-font-size".): 1: <% content_for :body_class, 'intro-admin_tours' %> 2: <% content_for :head_content, intro_tag(enable: true) %> 3: 4:
5:
app/assets/stylesheets/intro/shepherd/base.scss:46 Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.3ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:37:03 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:37:03.492672"], ["id", 25]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (91.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (93.2ms) Completed 200 OK in 149ms (Views: 120.8ms | ActiveRecord: 6.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:37:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 27ms (Views: 0.2ms | ActiveRecord: 1.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:37:05 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"UTYELDOw7iSF3wv3vpoowzNd7fD58sprSUlbUeB5B/VnhsK6MRkveU5xS1y4rba1VjS1xUG6mu3IIJT8JVoS7A==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:37:24 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"UTYELDOw7iSF3wv3vpoowzNd7fD58sprSUlbUeB5B/VnhsK6MRkveU5xS1y4rba1VjS1xUG6mu3IIJT8JVoS7A==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99", "cancel_link"=>"1"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:37:57 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:37:57.543858"], ["id", 25]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (71.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (72.9ms) Completed 200 OK in 108ms (Views: 86.7ms | ActiveRecord: 7.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:37:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:38:03 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7yiS618+Zepzkc1QFcBlINyQU9QshsEFz+qnEnE4AZfZmFR9XZekt7g/jfsT9/tWufkL4ZTOkYNOg2i/tBsUjg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:38:13 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7yiS618+Zepzkc1QFcBlINyQU9QshsEFz+qnEnE4AZfZmFR9XZekt7g/jfsT9/tWufkL4ZTOkYNOg2i/tBsUjg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"left", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:39:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7yiS618+Zepzkc1QFcBlINyQU9QshsEFz+qnEnE4AZfZmFR9XZekt7g/jfsT9/tWufkL4ZTOkYNOg2i/tBsUjg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:40:54 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="images.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"images.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:40:55 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7yiS618+Zepzkc1QFcBlINyQU9QshsEFz+qnEnE4AZfZmFR9XZekt7g/jfsT9/tWufkL4ZTOkYNOg2i/tBsUjg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565253654_B5Vh5a_N.jpeg", "image_width"=>"275", "image_height"=>"183", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:41:25 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7yiS618+Zepzkc1QFcBlINyQU9QshsEFz+qnEnE4AZfZmFR9XZekt7g/jfsT9/tWufkL4ZTOkYNOg2i/tBsUjg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565253654_B5Vh5a_N.jpeg", "image_width"=>"275", "image_height"=>"183", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:41:29 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:41:29.655585"], ["id", 25]]  (6.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.2ms) Completed 200 OK in 59ms (Views: 36.1ms | ActiveRecord: 7.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:41:29 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:41:32 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:41:32.701292"], ["id", 25]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.7ms) Completed 200 OK in 114ms (Views: 36.6ms | ActiveRecord: 8.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:41:32 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:41:35 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="images.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"images.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:41:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"3bRQudHFc3PUvHZXp2q7X6pEiiJbk3SXNnrOD1yO9uTrBJYv02yyLh8SNvyhXSUpzy3SF+PbJBG3EwGima3j/Q==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565253695_QVFB0yIM.jpeg", "image_width"=>"275", "image_height"=>"183", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:41:45 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"3bRQudHFc3PUvHZXp2q7X6pEiiJbk3SXNnrOD1yO9uTrBJYv02yyLh8SNvyhXSUpzy3SF+PbJBG3EwGima3j/Q==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565253695_QVFB0yIM.jpeg", "image_width"=>"275", "image_height"=>"183", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:41:51 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="website.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"website.jpg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:41:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"3bRQudHFc3PUvHZXp2q7X6pEiiJbk3SXNnrOD1yO9uTrBJYv02yyLh8SNvyhXSUpzy3SF+PbJBG3EwGima3j/Q==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565253711_ShHoZdhi.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:41:57 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:41:58 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"3bRQudHFc3PUvHZXp2q7X6pEiiJbk3SXNnrOD1yO9uTrBJYv02yyLh8SNvyhXSUpzy3SF+PbJBG3EwGima3j/Q==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565253717_48FbN7-z.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:42:05 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="images.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"images.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 16:42:06 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"3bRQudHFc3PUvHZXp2q7X6pEiiJbk3SXNnrOD1yO9uTrBJYv02yyLh8SNvyhXSUpzy3SF+PbJBG3EwGima3j/Q==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565253725_HeJUZeA2.jpeg", "image_width"=>"275", "image_height"=>"183", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:43:11 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:43:11.458264"], ["id", 25]]  (7.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.5ms) Completed 200 OK in 61ms (Views: 35.2ms | ActiveRecord: 8.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:43:11 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:43:18 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="images.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"images.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:43:24 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="IMG_0572.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"IMG_0572.JPG\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:43:29 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 16:43:35 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:43:40 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:43:40.653171"], ["id", 25]]  (7.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (51.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (52.6ms) Completed 200 OK in 104ms (Views: 76.8ms | ActiveRecord: 8.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:43:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:47:38 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:47:38.194898"], ["id", 25]]  (7.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.7ms) Completed 200 OK in 69ms (Views: 41.8ms | ActiveRecord: 8.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:47:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:50:34 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:50:34.459856"], ["id", 25]]  (12.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.4ms) Completed 200 OK in 94ms (Views: 61.6ms | ActiveRecord: 13.6ms) Started GET "/assets/intro/admin/tour.self-eb2f412066380ec0c927c6309ef7027c8d663b1f671fa12695ce7cea0b8d8cec.css?body=1" for ::1 at 2019-08-08 16:50:34 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:50:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:52:17 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:52:17.512758"], ["id", 25]]  (16.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (32.1ms) Completed 200 OK in 86ms (Views: 52.1ms | ActiveRecord: 17.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:52:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:56:56 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:56:56.254982"], ["id", 25]]  (7.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.2ms) Completed 200 OK in 94ms (Views: 73.6ms | ActiveRecord: 8.2ms) Started GET "/assets/intro/admin/tour.self-3e8080f3275664bcdcdc6d46c2597faf3c8b50d3974b9b0f63b19c2e01e106a6.css?body=1" for ::1 at 2019-08-08 16:56:56 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:56:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:57:21 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:57:22.009846"], ["id", 25]]  (5.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.7ms) Completed 200 OK in 88ms (Views: 63.6ms | ActiveRecord: 6.4ms) Started GET "/assets/intro/admin/tour.self-6ce18a99a5f80451e30fc5149781e0be9d9001da9969ccea253ffbee31b56330.css?body=1" for ::1 at 2019-08-08 16:57:22 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:57:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:57:41 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:57:41.691972"], ["id", 25]]  (8.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.2ms) Completed 200 OK in 95ms (Views: 67.5ms | ActiveRecord: 9.4ms) Started GET "/assets/intro/admin/tour.self-30d62fdf8d9bf61a175910ceabb408d9995e759874be5e83479b54db539c8ac3.css?body=1" for ::1 at 2019-08-08 16:57:41 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:57:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:57:57 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:57:57.254671"], ["id", 25]]  (7.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.5ms) Completed 200 OK in 87ms (Views: 65.9ms | ActiveRecord: 7.6ms) Started GET "/assets/intro/admin/tour.self-29fe3714bfa7c5e2e1ed0c86cad5b91b91e1a1a31de92a305040a04eac7cac52.css?body=1" for ::1 at 2019-08-08 16:57:57 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:57:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:58:06 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:58:06.505875"], ["id", 25]]  (8.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (17.4ms) Completed 200 OK in 59ms (Views: 33.4ms | ActiveRecord: 9.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:58:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 16:58:59 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 08:58:59.965894"], ["id", 25]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.2ms) Completed 200 OK in 141ms (Views: 111.2ms | ActiveRecord: 7.9ms) Started GET "/assets/intro/admin/components/form.self-f8c236d65ea8ba8cc4152b8bec7f7a2d4efaf36abf13bcaae7c4e90815529316.css?body=1" for ::1 at 2019-08-08 16:59:00 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 16:59:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 17:00:04 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 09:00:04.737645"], ["id", 25]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.1ms) Completed 200 OK in 74ms (Views: 48.9ms | ActiveRecord: 7.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 17:00:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 17:01:08 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 09:01:08.632133"], ["id", 25]]  (7.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (22.3ms) Completed 200 OK in 95ms (Views: 70.1ms | ActiveRecord: 7.8ms) Started GET "/assets/intro/admin/tour.self-618e023106c7e7d67e2c7fbf21c6d62781f11c7d37b3da13b06e832bf1ba0445.css?body=1" for ::1 at 2019-08-08 17:01:08 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 17:01:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 17:44:39 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 09:44:39.738260"], ["id", 25]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (21.0ms) Completed 200 OK in 55ms (Views: 36.8ms | ActiveRecord: 6.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 17:44:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 17:44:45 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"y49K0rZQ/FAbJRiYwcFHu1cZsJFv5pcWJlC1VKTj9KT9P4xEtPk9DdCLWDPH9tnNMnDopNeux5CnOXr5YcDhvQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 17:44:51 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"y49K0rZQ/FAbJRiYwcFHu1cZsJFv5pcWJlC1VKTj9KT9P4xEtPk9DdCLWDPH9tnNMnDopNeux5CnOXr5YcDhvQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 17:54:37 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 09:54:37.972433"], ["id", 25]]  (5.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (32.0ms) Completed 200 OK in 72ms (Views: 50.1ms | ActiveRecord: 5.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 17:54:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 17:55:59 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 09:55:59.161839"], ["id", 25]]  (8.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.5ms) Completed 200 OK in 57ms (Views: 37.3ms | ActiveRecord: 9.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 17:55:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 17:56:03 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 17:56:11 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="images.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"images.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 17:56:56 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 09:56:56.073652"], ["id", 25]]  (8.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.2ms) Completed 200 OK in 60ms (Views: 34.6ms | ActiveRecord: 9.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 17:56:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 17:57:00 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="website.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"website.jpg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 18:00:59 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 10:00:59.293608"], ["id", 25]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.3ms) Completed 200 OK in 53ms (Views: 35.4ms | ActiveRecord: 7.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 18:00:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:01:09 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:01:13 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="ruby.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"ruby.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 18:04:34 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.1ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 10:04:34.533699"], ["id", 25]]  (15.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (20.8ms) Completed 200 OK in 64ms (Views: 36.6ms | ActiveRecord: 15.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 18:04:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.4ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:04:38 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:04:42 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="images.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"images.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 18:27:06 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 10:27:06.852571"], ["id", 25]]  (5.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.3ms) Completed 200 OK in 67ms (Views: 39.9ms | ActiveRecord: 6.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 18:27:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:27:15 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:27:21 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:27:25 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/brab" for ::1 at 2019-08-08 18:27:32 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"brab"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:9292/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 18:27:32 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (12.9ms) Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.2ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 18:27:40 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"QeyDJj7Mp4fcZjrDekZdA7ndui5sG7DYHMb+V73NLxR3XEWwPGVm2hfIemh8ccN13LTiG9RT4F6drzH6eO46DQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565260045_CxcxO1Ne.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:28:34 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="download.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"download.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 18:28:37 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"QeyDJj7Mp4fcZjrDekZdA7ndui5sG7DYHMb+V73NLxR3XEWwPGVm2hfIemh8ccN13LTiG9RT4F6drzH6eO46DQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565260114_uslI9uvk.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:29:16 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 18:29:17 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"QeyDJj7Mp4fcZjrDekZdA7ndui5sG7DYHMb+V73NLxR3XEWwPGVm2hfIemh8ccN13LTiG9RT4F6drzH6eO46DQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565260156_QYb6nwtF.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 18:30:01 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 10:30:01.263520"], ["id", 25]]  (6.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (86.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (87.4ms) Completed 200 OK in 120ms (Views: 101.8ms | ActiveRecord: 7.0ms) Started GET "/assets/intro/shepherd/base.self-dbc94e7dd44ab1720b695b46683fd9bba4ad6a3f93be5f9b768e68cb97a478ea.css?body=1" for ::1 at 2019-08-08 18:30:01 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 18:30:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 18:30:06 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kmHlMYOmlY/sKMeZZ498G8kgDjv/Z6ohi0Mdd5e8L7Ok0SOngQ9U0ieGhzJhuOJtrElWDkcv+qcKKtLaUp86qg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 18:30:15 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kmHlMYOmlY/sKMeZZ498G8kgDjv/Z6ohi0Mdd5e8L7Ok0SOngQ9U0ieGhzJhuOJtrElWDkcv+qcKKtLaUp86qg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 18:30:20 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 18:30:23 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kmHlMYOmlY/sKMeZZ498G8kgDjv/Z6ohi0Mdd5e8L7Ok0SOngQ9U0ieGhzJhuOJtrElWDkcv+qcKKtLaUp86qg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565260220_S3uGIBD4.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 18:30:35 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kmHlMYOmlY/sKMeZZ498G8kgDjv/Z6ohi0Mdd5e8L7Ok0SOngQ9U0ieGhzJhuOJtrElWDkcv+qcKKtLaUp86qg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565260220_S3uGIBD4.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"left", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 19:23:59 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.0ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 11:23:59.711569"], ["id", 25]]  (5.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (162.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (164.0ms) Completed 200 OK in 215ms (Views: 188.4ms | ActiveRecord: 6.8ms) Started GET "/assets/intro/shepherd/base.self-cfb31775a216728f2a8aa3a340bf2a4521afefe2263a3853693147ae7aa99ed9.css?body=1" for ::1 at 2019-08-08 19:23:59 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 19:24:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.7ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 27ms (Views: 0.3ms | ActiveRecord: 1.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 19:24:01 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"blZVX7XPll4PEHV69efkxkJ4/7VRw8ThAl+yfjc2E/NY5pPJt2ZXA8S+NdHz0HqwJxGngOmLlGeDNn3T8hUG6g==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 19:24:04 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 11:24:04.951765"], ["id", 25]]  (7.6ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.7ms) Completed 200 OK in 70ms (Views: 41.5ms | ActiveRecord: 8.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 19:24:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 19:24:06 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"h6jVE/PLxx6ils8H7m1jS5yh6zhNKDiKZ37FZtjNDkexGBOF8WIGQ2k4j6zoWv09+cizDfVgaAzmFwrLHe4bXg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 19:24:08 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 11:24:08.640359"], ["id", 25]]  (8.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.5ms) Completed 200 OK in 66ms (Views: 35.3ms | ActiveRecord: 9.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 19:24:08 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 19:51:59 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"gWIc01sEmxCBMuPCNfoOBudVnPDEjIhGWONpdWwkIAK30tpFWa1aTUqco2kzzZBwgjzExXzE2MDZiqbYqQc1Gw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 11:52:00.163134"], ["id", 25]]  (6.5ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (608.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (612.9ms) Completed 200 OK in 727ms (Views: 672.0ms | ActiveRecord: 7.5ms) Started GET "/assets/intro/shepherd.self-5f95e4748a067d18f246079d4a5abc17cdefbfb6ea41f6cdc4ad4c991166a45b.js?body=1" for ::1 at 2019-08-08 19:52:00 +0800 Started GET "/assets/intro/shepherd/base.self-a43c077cba85418b553a27c9ae1c73107184debf63c20537bf2931b1979d1d18.css?body=1" for ::1 at 2019-08-08 19:52:00 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 19:52:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 38ms (Views: 0.4ms | ActiveRecord: 1.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 19:52:02 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"tRjB0NNBvJ53R50XELPuTyoY7oKJfsqZSgLIB4KYiwiDqAdG0eh9w7zp3bwWhHA5T3G2tzE2mh/LaweqR7ueEQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565252768_mkEyfJDe.png", "image_width"=>"295", "image_height"=>"171", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-08-08 19:52:10 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="website.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"website.jpg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 19:52:12 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"tRjB0NNBvJ53R50XELPuTyoY7oKJfsqZSgLIB4KYiwiDqAdG0eh9w7zp3bwWhHA5T3G2tzE2mh/LaweqR7ueEQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565265130_6znoX58O.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: \"新版工作台已经上线啦\"\n content: \"赶紧点击我进入新版工作台吧!!\"\n image_url: \"/uploads/intro/20190808/1565265130_6znoX58O.jpg\"\n image_width: '1200'\n image_height: '799'\n image_placement: top\n element: ''\n placement: left\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-08-08 11:52:12.263431"], ["id", 25]]  (7.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.7ms) Completed 200 OK in 74ms (Views: 51.5ms | ActiveRecord: 8.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 19:52:12 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 19:52:13 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"eorPJDlAfKmKvRCGXCxY4xSju27x1BDBlYL+fcKH2GlMOgmyO+m99EETUC1aG8aVccrjW0mcQEcU6zHQB6TNcA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565265130_6znoX58O.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 20:46:14 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"tRjB0NNBvJ53R50XELPuTyoY7oKJfsqZSgLIB4KYiwiDqAdG0eh9w7zp3bwWhHA5T3G2tzE2mh/LaweqR7ueEQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565265130_6znoX58O.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 12:46:15.134442"], ["id", 25]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (528.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (532.9ms) Completed 200 OK in 632ms (Views: 567.5ms | ActiveRecord: 6.6ms) Started GET "/assets/intro/shepherd.self-90285ed786ff19b9ba6236b3394d4de8bf1d8cb78f37ad84ac761a8cb012125a.js?body=1" for ::1 at 2019-08-08 20:46:15 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 20:46:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 32ms (Views: 0.2ms | ActiveRecord: 1.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 20:46:18 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"jl60SeTPGEb7TQjcBO6xtog6yHNIyse9F+8c0tBejdu47nLf5mbZGzDjSHcC2S/A7VOQRvCClzuWhtN/FX2Ywg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565265130_6znoX58O.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 20:46:22 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"jl60SeTPGEb7TQjcBO6xtog6yHNIyse9F+8c0tBejdu47nLf5mbZGzDjSHcC2S/A7VOQRvCClzuWhtN/FX2Ywg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565265130_6znoX58O.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/25" for ::1 at 2019-08-08 20:47:21 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"tRjB0NNBvJ53R50XELPuTyoY7oKJfsqZSgLIB4KYiwiDqAdG0eh9w7zp3bwWhHA5T3G2tzE2mh/LaweqR7ueEQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565265130_6znoX58O.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brab' AND "intro_tours"."id" != 25) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-08-08 12:47:21.695377"], ["id", 25]]  (3.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (6.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (72.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (74.2ms) Completed 200 OK in 111ms (Views: 88.7ms | ActiveRecord: 4.7ms) Started GET "/assets/intro/shepherd/base.self-9b6d55641ef22c0bd1d8744df195d07deed0ee74144ef2d79dc4850597d4a417.css?body=1" for ::1 at 2019-08-08 20:47:21 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F25" for ::1 at 2019-08-08 20:47:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:9292/intro/admin/tours/25"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 20:47:23 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Gpk0dToIOt67oiP/en3+jdzu5eFvGmZ6MqPACq79960sKfLjOKH7g3AMY1R8SmD7uYe91NdSNvyzyg+na97itA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brab", "controller_path"=>"brab", "action_name"=>"", "options"=>{"steps"=>[{"title"=>"新版工作台已经上线啦", "content"=>"赶紧点击我进入新版工作台吧!!", "image_url"=>"/uploads/intro/20190808/1565265130_6znoX58O.jpg", "image_width"=>"1200", "image_height"=>"799", "image_placement"=>"top", "element"=>"", "placement"=>"left", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 20:48:30 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (68.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (71.4ms) Completed 200 OK in 95ms (Views: 92.9ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 20:48:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started DELETE "/intro/admin/tours/25" for ::1 at 2019-08-08 20:48:36 +0800 Processing by Intro::Admin::ToursController#destroy as HTML Parameters: {"authenticity_token"=>"e+huYTg/wNw8GuOJX5cQ2mxrFeeT+/2XKk6hLWpoZSFNWKj3OpYBgfe0oyJZoI6sCQJN0iuzrRGrJ26Ar0twOA==", "id"=>"25"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 25]]  (0.3ms) begin transaction Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."tour_id" = ? [["tour_id", 25]] SQL (0.4ms) DELETE FROM "intro_tours" WHERE "intro_tours"."id" = ? [["id", 25]]  (6.1ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 24ms (ActiveRecord: 7.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 20:48:36 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (13.3ms) Completed 200 OK in 42ms (Views: 40.6ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 20:48:36 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 20:48:37 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (25.9ms) Completed 200 OK in 46ms (Views: 45.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 20:48:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/route?path=%2F" for ::1 at 2019-08-08 20:48:42 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"/", "tour"=>{}} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-08 20:48:46 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ba9vI1YpjBctDR4HrrGc+LiEZyQb0wE7IJ401l/dBRhbH6m1VIBNSuajXqyohgKO3e0/EaObUb2h9/t7mv4QAQ==", "tour"=>{"route"=>{"simple"=>"/", "query"=>""}, "ident"=>"home#index-fu7xjb", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"brbarba", "content"=>"rbarbarbarb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'home#index-fu7xjb' LIMIT 1 SQL (0.2ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: home\n action: index\nquery: ''\nsimple: \"/\"\nstrict: false\n"], ["ident", "home#index-fu7xjb"], ["controller_path", "home"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brbarba\n content: rbarbarbarb\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-08 12:48:46.829437"], ["updated_at", "2019-08-08 12:48:46.829437"]]  (5.6ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/26 Completed 302 Found in 19ms (ActiveRecord: 6.0ms) Started GET "/intro/admin/tours/26" for ::1 at 2019-08-08 20:48:46 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"26"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 26]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (19.5ms) Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F26" for ::1 at 2019-08-08 20:48:47 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/26"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started PUT "/intro/admin/tours/26/publish?published=true" for ::1 at 2019-08-08 20:48:49 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"lrDCxWeJyteLHWUaPGboASVoY0wGegzGq+gmzD4koEOgAARTZSALikCzJbE6UXZ3QAE7eb4yXEAqgelh+we1Wg==", "published"=>"true", "id"=>"26"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 26]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-fu7xjb' AND "intro_tours"."id" != 26) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-08-08 12:48:49.683101"], ["id", 26]]  (6.0ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/26 Completed 302 Found in 16ms (ActiveRecord: 6.6ms) Started GET "/intro/admin/tours/26" for ::1 at 2019-08-08 20:48:49 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"26"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 26]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (34.1ms) Completed 200 OK in 61ms (Views: 60.4ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F26" for ::1 at 2019-08-08 20:48:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/26"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-08 20:48:51 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (14.2ms) Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-08 20:48:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-08-08 20:48:56 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.7ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 36ms (Views: 35.7ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-08 20:48:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 26 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.8ms) Started POST "/intro/tours/record" for ::1 at 2019-08-08 20:49:04 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>26, "tour"=>{"id"=>26}} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 26]] Intro::TourHistory Load (0.2ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 26 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 26], ["touch_count", 1], ["created_at", "2019-08-08 12:49:04.988184"], ["updated_at", "2019-08-08 12:49:04.988184"]]  (3.9ms) commit transaction Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 5.2ms) Started GET "/" for ::1 at 2019-08-08 21:27:35 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.4ms) User Load (1.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 43ms (Views: 41.0ms | ActiveRecord: 1.2ms) Started GET "/intro/admin" for ::1 at 2019-08-08 22:24:55 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (412.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (421.8ms) Completed 200 OK in 490ms (Views: 478.5ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/components/button.self-1bb260bb8479f0992c1b0821e9ba867bcb210044f5d483f54b96d2b1821a47ae.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/components/checkbox.self-3f83132468083d2bcaa0ecb176d9c64d150b8cd147c66b148bcd67c52677db41.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/components/form.self-38ff62babb683e923cadba0c5a5cd6431ad32b46655fc7f7cec487b13e7a1a42.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/components/loading.self-be278cf1a29332f9421d188c2213bf43736a0774bd7c7d12ae7dead5653ddcbe.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/components/select.self-c1bf991d4d88098f813066681300c4477fd3c095a1e21a8a7a518318bc9c2d99.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/tours.self-dc0e8e4a899b45b4181c179f8bf870ef1644c708a1b1630d86dcf22d23671a54.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/admin/tour.self-1042f383ee7450636cf0cb81bbb45db17ea8697c36c3d89ff5b0978297d19685.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/assets/intro/shepherd/base.self-9b6d55641ef22c0bd1d8744df195d07deed0ee74144ef2d79dc4850597d4a417.css?body=1" for ::1 at 2019-08-08 22:24:56 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin" for ::1 at 2019-08-08 22:24:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.5ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 44ms (Views: 0.4ms | ActiveRecord: 1.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 22:50:24 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (461.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (471.9ms) Completed 200 OK in 515ms (Views: 498.5ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-40ddee899d675a01e4f1f74c521ba1fe7d5c25a19c970b58899f8dd2cee26a28.js?body=1" for ::1 at 2019-08-08 22:50:25 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 22:50:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 40ms (Views: 0.3ms | ActiveRecord: 1.3ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-08 23:06:30 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (488.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (499.0ms) Completed 200 OK in 551ms (Views: 533.2ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-139d2480616a48e4f6cd0cde45f21a2ac4bbe04de980633638fa96c7b9152e75.js?body=1" for ::1 at 2019-08-08 23:06:30 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-08 23:06:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 37ms (Views: 0.2ms | ActiveRecord: 1.2ms) Started GET "/intro/admin/tours/route?path=%2F" for ::1 at 2019-08-08 23:06:46 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"/", "tour"=>{}} Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-08 23:06:49 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"NbXZXF72nNDzZ2lHk2AZrTPs3mkLPaA2Mgagmncn6bEDBR/KXF9djTjJKeyVV4fbVoWGXLN18LCzb283sgT8qA==", "tour"=>{"route"=>{"simple"=>"/", "query"=>""}, "ident"=>"home#index-35k9g1", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms)  (16.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (18.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20190706100955) ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20190706100955) ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20190706100955)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706100955"]]  (7.2ms) commit transaction Migrating to CreateIntroTours (20190706110237)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "intro_tours" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ident" varchar NOT NULL, "controller_path" varchar DEFAULT '' NOT NULL, "action_name" varchar DEFAULT '' NOT NULL, "route" text, "options" text, "published" boolean DEFAULT 'f', "expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) select sqlite_version(*)  (0.2ms) CREATE UNIQUE INDEX "index_intro_tours_on_ident" ON "intro_tours" ("ident")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'  (0.1ms) CREATE INDEX "index_intro_tours_on_controller_and_action_and_published" ON "intro_tours" ("controller_path", "action_name", "published") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110237"]]  (6.0ms) commit transaction Migrating to CreateIntroTourHistories (20190706110238)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "intro_tour_histories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tour_id" integer NOT NULL, "user_id" integer NOT NULL, "touch_count" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_intro_tour_histories_on_user_and_tour_and_touch_count" ON "intro_tour_histories" ("user_id", "tour_id", "touch_count") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190706110238"]]  (5.7ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_published' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_published' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index' ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tour_histories_on_user_and_tour_and_touch_count' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_controller_and_action_and_published' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_controller_and_action_and_published' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_intro_tours_on_ident' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_intro_tours_on_ident' AND type='index'  Started GET "/intro/admin" for ::1 at 2019-08-09 10:18:01 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (437.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (447.9ms) Completed 200 OK in 495ms (Views: 480.6ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin" for ::1 at 2019-08-09 10:18:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2019-08-09 02:18:02.353834"], ["updated_at", "2019-08-09 02:18:02.353834"]]  (3.8ms) commit transaction  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 35ms (Views: 0.3ms | ActiveRecord: 5.3ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-09 10:18:04 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"81i4ED377IduDoeiqYgsn9SgUdtHFVGJy3hOswm1WDvF6H6GP1It2qWgxwmvv7LpsckJ7v9dAQ9KEYEezJZNIg=="} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-09 10:18:04 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.3ms) Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-08-09 10:18:07 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-09 10:18:08 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin" for ::1 at 2019-08-09 12:15:57 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (No route matches [GET] "/intro/admin"): actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (25.9ms) Started GET "/intro/admin" for ::1 at 2019-08-09 12:18:39 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 6ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-09 12:18:39 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (7.6ms) Completed 200 OK in 347ms (Views: 346.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 12:18:41 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"SuYrr6l7kaeoeHfh6IEywV2L9Tv2+2rpVE8AIfAvfQN8Vu05q9JQ+mPWN0rutqy3OOKtDk6zOm/VJs+MNQxoGg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.0ms) Completed 200 OK in 48ms (Views: 47.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 12:18:43 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"L1/Y4HtAduKoJVQcmpgSgJ3piNsqlRlgGRvEBXthiJYZ7x52eem3v2OLFLecr4z2+IDQ7pLdSeaYcguovkKdjw==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 12:18:44 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"u/H4EP5MF+USr2Ty91z6dwWOnRCcG2poWzerGvjXovuNQT6G/OXWuNkBJFnxa2QBYOfFJSRTOu7aXmS3PfS34g==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.7ms) Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 12:19:49 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"u/c2Z3vUBaBhdCHbXUBVDI/9OL4pSFw+ymMdPQceuECNR/DxeX3E/araYXBbd8t66pRgi5EADLhLCtKQwj2tWQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 6ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-09 12:19:49 +0800 Processing by Intro::Admin::ToursController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (327.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (337.2ms) Completed 200 OK in 396ms (Views: 389.6ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-09 12:19:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 27ms (Views: 0.2ms | ActiveRecord: 1.1ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-09 12:19:53 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (34.6ms) Completed 200 OK in 58ms (Views: 49.9ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-09 12:19:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/" for ::1 at 2019-08-09 19:41:53 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.4ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 554ms (Views: 553.8ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd/base.self-2afa93b8374379e84d22a2d2f1bd1d0efa8e1f114a24070dc8e2d5a26f90c893.css?body=1" for ::1 at 2019-08-09 19:41:53 +0800 Started GET "/assets/intro/shepherd.self-353ba8ec6265f6eb44eba2976145d0cdab05cfc88cb3c7c05aff8a6772f2cecd.js?body=1" for ::1 at 2019-08-09 19:41:53 +0800 Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2F" for ::1 at 2019-08-09 19:41:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:9292/"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18)  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 28ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-09 19:41:57 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (10.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (15.1ms) Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/components/button.self-edd42ca2c8b9a3b0b080f67eb7393e1ff21ca635a145747296b3f6aa310293e0.css?body=1" for ::1 at 2019-08-09 19:41:57 +0800 Started GET "/assets/intro/admin/components/checkbox.self-8c3e5d757809aab46eeb4468b473b506ac15fcecd00328bcf5cb3929b25d9e98.css?body=1" for ::1 at 2019-08-09 19:41:57 +0800 Started GET "/assets/intro/admin/components/form.self-a3476c0621abde3bce6242637808b4f0fe56b3aa6f20d62e2fcb810c7ce1eb30.css?body=1" for ::1 at 2019-08-09 19:41:57 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-09 19:41:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-09 19:41:58 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.4ms) Completed 200 OK in 73ms (Views: 61.6ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-09 19:41:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.5ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/route?path=brbarba" for ::1 at 2019-08-09 19:42:07 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"brbarba", "tour"=>{}} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-08-09 19:42:15 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Gq26OcYh1Vb8EIt1Aax4C4KXxuBzGN5b4ijeMD6ZN6MsHXyvxIgUCze+y94Hm+Z95/6e1ctQjt1jQRGd+7oiug==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>""}  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'brbarbabra' LIMIT 1 SQL (0.3ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: \nquery: ''\nsimple: brbarba\nstrict: false\n"], ["ident", "brbarbabra"], ["controller_path", "brabrab"], ["action_name", "brabrab"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: barb\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-08-09 11:42:15.425228"], ["updated_at", "2019-08-09 11:42:15.425228"]]  (7.3ms) commit transaction Redirected to http://localhost:9292/intro/admin/tours/1 Completed 302 Found in 29ms (ActiveRecord: 7.9ms) Started GET "/intro/admin/tours/1" for ::1 at 2019-08-09 19:42:15 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (16.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (18.8ms) Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-08-09 19:42:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:9292/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-09 19:42:17 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7K2+yAgMpjdqj5fkuqpf8DgD1oTXv5mCyvywQ8JbBoHaHXheCqVnaqEh10+8ncGGXWqOsW/3yQRLlX/uB3gTmA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-08-09 19:42:29 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"7K2+yAgMpjdqj5fkuqpf8DgD1oTXv5mCyvywQ8JbBoHaHXheCqVnaqEh10+8ncGGXWqOsW/3yQRLlX/uB3gTmA=="} Redirected to http://localhost:9292/intro/admin/sessions/new Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-08-09 19:42:29 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 19:42:34 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2fLgEiJFFRjwzThiVmJLKOxwbsvRC5gZl4S9kmUhzjnvQiaEIOzURTtjeMlQVdVeiRk2/mlDyJ8W7XI/oALbIA==", "username"=>"brba", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.8ms) Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 19:43:06 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"2fLgEiJFFRjwzThiVmJLKOxwbsvRC5gZl4S9kmUhzjnvQiaEIOzURTtjeMlQVdVeiRk2/mlDyJ8W7XI/oALbIA==", "username"=>"brba", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.9ms) Completed 200 OK in 156ms (Views: 154.9ms | ActiveRecord: 0.0ms) Started GET "/assets/intro/admin/components/form.self-cec906252ee2d4a4e1014dadd0a34ca635cedbba8257697ececeae4a2fe4e640.css?body=1" for ::1 at 2019-08-09 19:43:06 +0800 Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 19:43:09 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"L2W878sOVfAnps3U6b7Pw7qYJrrxqWBlCE/khFQ+KzMZ1Xp5yaeUrewIjX/viVG13/F+j0nhMOOJJispkR0+Kg==", "username"=>"WRDkzl4brba", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (0.7ms) Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 19:43:15 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"L2W878sOVfAnps3U6b7Pw7qYJrrxqWBlCE/khFQ+KzMZ1Xp5yaeUrewIjX/viVG13/F+j0nhMOOJJispkR0+Kg==", "username"=>"WRDkzl4brba", "password"=>"[FILTERED]", "button"=>""} Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.1ms) Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-08-09 19:43:17 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sAI5i7wPljm43t1jPkigGZYHA+Z8WVnWLx4M1bAStNuGsv8dvqZXZHNwncg4fz5v825b08QRCVCud8N4dTGhwg==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:9292/intro/admin/tours Completed 302 Found in 1ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-09 19:43:17 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (18.0ms) Completed 200 OK in 42ms (Views: 40.5ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-09 19:43:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:9292/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-09 19:43:19 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (21.2ms) Completed 200 OK in 39ms (Views: 38.1ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-09 19:43:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:9292/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/" for ::1 at 2019-08-10 10:21:04 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (14.0ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 672ms (Views: 671.6ms | ActiveRecord: 0.3ms) Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2019-08-10 10:21:04 +0800 Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2019-08-10 10:21:04 +0800 Started GET "/assets/shepherd.min.self-65681f3532d2d673a15ad3121cc117fbde838792d3bc0336d3d738ae5c6aeaf7.js?body=1" for ::1 at 2019-08-10 10:21:05 +0800 Started GET "/assets/intro/shepherd/base.self-4601f308bb1eee09074c3aeecd556c59bfb6fd662e9a8a53a166f56adcf6e1a0.css?body=1" for ::1 at 2019-08-10 10:21:05 +0800 Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-08-10 10:21:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18)  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 24ms (Views: 0.2ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-08-10 10:21:06 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (20.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (24.8ms) Completed 200 OK in 102ms (Views: 100.3ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/components/button.self-edd42ca2c8b9a3b0b080f67eb7393e1ff21ca635a145747296b3f6aa310293e0.css?body=1" for ::1 at 2019-08-10 10:21:07 +0800 Started GET "/assets/intro/admin/components/form.self-a3476c0621abde3bce6242637808b4f0fe56b3aa6f20d62e2fcb810c7ce1eb30.css?body=1" for ::1 at 2019-08-10 10:21:07 +0800 Started GET "/assets/intro/admin/components/checkbox.self-8c3e5d757809aab46eeb4468b473b506ac15fcecd00328bcf5cb3929b25d9e98.css?body=1" for ::1 at 2019-08-10 10:21:07 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-08-10 10:21:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-08-10 10:21:24 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (27.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (47.9ms) Completed 200 OK in 70ms (Views: 68.1ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-10 10:21:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-08-10 10:21:30 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-08-10 10:21:32 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Nuofh0UJRfu49efyni+sApPQEWqbGdMIBw7sWCLzQfgAWtkRR6CEpnNbp1mYGDJ09rlJXyNRg46GZyP159BU4Q==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000/intro/admin/tours/new", "query"=>""}, "ident"=>"intro/admin/tours#new-vu843i", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"ntsnt", "content"=>"sntsntnsntsn", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2019-08-10 10:45:22 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (2.9ms) Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2019-08-10 10:45:22 +0800 Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for 127.0.0.1 at 2019-08-10 10:45:22 +0800 Started GET "/" for ::1 at 2019-09-03 21:35:03 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (12.3ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 444ms (Views: 443.5ms | ActiveRecord: 0.4ms) Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2019-09-03 21:35:04 +0800 Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2019-09-03 21:35:04 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-09-03 21:35:06 +0800 Processing by Intro::Admin::ToursController#index as HTML DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (52.4ms) Completed 200 OK in 146ms (Views: 125.3ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/components/body.self-ad70f5f1459b7dda5a6acfeff5dc31ee1e2b13ad64e1b2dc50c77a9509d82919.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/components/checkbox.self-8c3e5d757809aab46eeb4468b473b506ac15fcecd00328bcf5cb3929b25d9e98.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/components/link.self-d9a79153949169df1441a1fd1830422f08712eeecf1c780b0edb5e2f8c65b750.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/components/button.self-edd42ca2c8b9a3b0b080f67eb7393e1ff21ca635a145747296b3f6aa310293e0.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/components/base.self-a71ec6cd5677ac375a0804fac147d23e2061be4318ab9d9e612f9fd682fd1cda.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/components/form.self-a3476c0621abde3bce6242637808b4f0fe56b3aa6f20d62e2fcb810c7ce1eb30.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/components/loading.self-be278cf1a29332f9421d188c2213bf43736a0774bd7c7d12ae7dead5653ddcbe.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/components/select.self-c1bf991d4d88098f813066681300c4477fd3c095a1e21a8a7a518318bc9c2d99.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/tour.self-1042f383ee7450636cf0cb81bbb45db17ea8697c36c3d89ff5b0978297d19685.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/tours.self-dc0e8e4a899b45b4181c179f8bf870ef1644c708a1b1630d86dcf22d23671a54.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/sessions.self-6f60459ccfdb080377d8dbcaaa0ed24a978352227f241c03888c02b278ac8e7a.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/application.self-72cef24f6d2b0bf68825925888b5c699c5ed400a0d9274ad476652e664cfde95.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/shepherd/_variables.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/shepherd/base.self-4601f308bb1eee09074c3aeecd556c59bfb6fd662e9a8a53a166f56adcf6e1a0.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/jquery_ujs.self-784a997f6726036b1993eb2217c9cb558e1cbb801c6da88105588c56f13b466a.js?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/admin/application.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/shepherd.min.self-65681f3532d2d673a15ad3121cc117fbde838792d3bc0336d3d738ae5c6aeaf7.js?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/shepherd.self-353ba8ec6265f6eb44eba2976145d0cdab05cfc88cb3c7c05aff8a6772f2cecd.js?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/assets/intro/application.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.js?body=1" for ::1 at 2019-09-03 21:35:06 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-03 21:35:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 38ms (Views: 0.2ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 21:35:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (28.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (71.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (107.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (112.4ms) Completed 200 OK in 150ms (Views: 147.7ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 21:35:25 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.5ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:25:01 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (48.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (51.8ms) Completed 200 OK in 106ms (Views: 104.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:25:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:26:17 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (42.6ms) Completed 200 OK in 81ms (Views: 79.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:26:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:26:59 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (48.2ms) Completed 200 OK in 79ms (Views: 77.0ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:26:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:27:35 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (55.4ms) Completed 200 OK in 85ms (Views: 82.9ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:27:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:27:38 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:28:21 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (50.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (53.1ms) Completed 200 OK in 83ms (Views: 80.8ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:28:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:28:25 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="19590194.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"19590194.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:29:01 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (68.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (83.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (84.4ms) Completed 200 OK in 106ms (Views: 105.1ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:29:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:29:04 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:30:01 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (46.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (48.8ms) Completed 200 OK in 83ms (Views: 81.5ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:30:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:30:04 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:30:26 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.7ms) Completed 200 OK in 67ms (Views: 66.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:30:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:30:30 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:36:56 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (56.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (59.7ms) Completed 200 OK in 88ms (Views: 86.5ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:36:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:36:59 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:37:34 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (55.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (58.4ms) Completed 200 OK in 97ms (Views: 95.1ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:37:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:37:37 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:39:03 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (63.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (66.0ms) Completed 200 OK in 96ms (Views: 94.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:39:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:39:07 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="19590194.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"19590194.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 22:39:25 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (13.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (60.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (63.4ms) Completed 200 OK in 95ms (Views: 93.0ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 22:39:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:39:29 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:39:37 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="19590194.jpeg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"19590194.jpeg\"\r\nContent-Type: image/jpeg\r\n">} Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:39:53 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-03 22:39:58 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.7ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (45.4ms) Completed 200 OK in 81ms (Views: 77.8ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-03 22:39:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-03 22:40:00 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (15.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (58.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (65.4ms) Completed 200 OK in 105ms (Views: 94.6ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-03 22:40:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/images" for ::1 at 2019-09-03 22:40:05 +0800 Processing by Intro::Admin::ImagesController#create as */* Parameters: {"image"=>#, @original_filename="1_oschina-org.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"image\"; filename=\"1_oschina-org.png\"\r\nContent-Type: image/png\r\n">} Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-03 22:40:08 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"9Rkkizs3sfGlqEXVnn53GCIr5g6mRyAlRYxx4/576BbDqeIdOZ5wrG4GBX6YSeluR0K+Ox4PcKPE5b5OO1j9Dw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"ntns", "content"=>"tnstnstnstns", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: brabr\n content: barb\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n title: ntns\n content: tnstnstnstns\n image_url: \"/uploads/intro/20190903/1567521605_X8R-cH65.png\"\n image_width: '248'\n image_height: '248'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-03 14:40:08.985905"], ["id", 1]]  (4.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (22.9ms) Completed 200 OK in 96ms (Views: 43.0ms | ActiveRecord: 5.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-03 22:40:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-03 22:40:19 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"9Rkkizs3sfGlqEXVnn53GCIr5g6mRyAlRYxx4/576BbDqeIdOZ5wrG4GBX6YSeluR0K+Ox4PcKPE5b5OO1j9Dw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brabr", "content"=>"barb", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"ntns", "content"=>"tnstnstnstns", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "button"=>"", "id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Intro::Tour Exists (0.5ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.7ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-03 14:40:19.058943"], ["id", 1]]  (4.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (47.9ms) Completed 200 OK in 125ms (Views: 70.9ms | ActiveRecord: 6.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-03 22:40:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-03 22:40:32 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (49.0ms) Completed 200 OK in 83ms (Views: 79.8ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-03 22:40:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-03 23:03:37 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.8ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (41.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (44.9ms) Completed 200 OK in 88ms (Views: 85.2ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-03 23:03:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:03:39 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (50.4ms) Completed 200 OK in 88ms (Views: 85.1ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:03:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:03:45 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:03:51 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (50.8ms) Completed 200 OK in 79ms (Views: 76.8ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:03:51 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:03:53 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:04:09 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (40.3ms) Completed 200 OK in 79ms (Views: 77.7ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:04:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:04:11 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 14ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:04:39 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (18.1ms) Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:04:39 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.4ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:06:11 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:08:37 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (29.6ms) Completed 200 OK in 73ms (Views: 71.7ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:08:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.4ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:08:40 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 13ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:09:03 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (36.6ms) Completed 200 OK in 64ms (Views: 62.9ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:09:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:09:05 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew%3Fuyiuy" for ::1 at 2019-09-03 23:09:26 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new?uyiuy", "tour"=>{}} Completed 200 OK in 12ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew%3Fuyiuy%3Dhihi" for ::1 at 2019-09-03 23:09:31 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new?uyiuy=hihi", "tour"=>{}} Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:09:34 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (55.2ms) Completed 200 OK in 89ms (Views: 86.7ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:09:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:09:50 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 12ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-03 23:09:52 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"/mFCTcX9zCJs80hr8imJshYBEyUGK1I+iROoI54EBPbI0YTbx1QNf6ddCMD0HhfEc2hLEL5jArgIemeOWycR7w==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000/intro/admin/tours/new", "query"=>""}, "ident"=>"intro/admin/tours#new-ax9exe", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"", "content"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 15ms (Views: 1.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-03 23:10:00 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"/mFCTcX9zCJs80hr8imJshYBEyUGK1I+iROoI54EBPbI0YTbx1QNf6ddCMD0HhfEc2hLEL5jArgIemeOWycR7w==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000/intro/admin/tours/new", "query"=>""}, "ident"=>"intro/admin/tours#new-ax9exe", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>";k;k;k", "content"=>"ibhlkbkhk", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:10:06 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (60.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (64.3ms) Completed 200 OK in 99ms (Views: 96.9ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:10:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:10:37 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (48.1ms) Completed 200 OK in 99ms (Views: 97.1ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:10:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A9292%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-03 23:10:41 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:9292/intro/admin/tours", "tour"=>{}} Completed 200 OK in 11ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-03 23:10:50 +0800 Processing by Intro::Admin::ToursController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (45.0ms) Completed 200 OK in 79ms (Views: 78.1ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:10:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:10:52 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-03 23:11:07 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"RALfZzOHqJAUav0L6fFO+aX7ONBt3gEZ98LglOMkOxRyshnxMS5pzd/EvaDvxtCPwJJg5dWWUZ92qy85JgcuDQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000/intro/admin/tours/new", "query"=>""}, "ident"=>"intro/admin/tours#new-8bkw83", "controller_path"=>"intro/admin/tours", "action_name"=>"new", "options"=>{"steps"=>[{"title"=>"kbjhbhkh", "content"=>"bmhbkhbk", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"hbkhhk", "content"=>"hkbhk", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 17ms (Views: 1.5ms | ActiveRecord: 0.0ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-03 23:26:52 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000/intro/admin/tours/new", "tour"=>{}} Completed 200 OK in 11ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-09-04 16:49:23 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (15.9ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 457ms (Views: 456.3ms | ActiveRecord: 0.5ms) Started GET "/assets/shepherd.min.self-65681f3532d2d673a15ad3121cc117fbde838792d3bc0336d3d738ae5c6aeaf7.js?body=1" for ::1 at 2019-09-04 16:49:24 +0800 Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 16:49:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18)  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 31ms (Views: 0.3ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 16:49:26 +0800 Processing by Intro::Admin::ToursController#index as HTML Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (19.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (23.9ms) Completed 200 OK in 89ms (Views: 88.1ms | ActiveRecord: 0.3ms) Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for ::1 at 2019-09-04 16:49:26 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-04 16:49:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 16:49:28 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (25.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (35.6ms) Completed 200 OK in 58ms (Views: 54.8ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 16:49:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:29:47 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (46719.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1443.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (14148.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (62322.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (62332.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (62346.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (62348.6ms) Completed 200 OK in 62442ms (Views: 62421.2ms | ActiveRecord: 1.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 17:30:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (2.0ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 22ms (Views: 0.3ms | ActiveRecord: 3.0ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:48:26 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (291.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (301.5ms) Completed 500 Internal Server Error in 330ms (ActiveRecord: 0.5ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb__597786792924329599_47187839156640' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___4081721515357455732_47187839934040' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.4ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:48:40 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (196.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (205.7ms) Completed 500 Internal Server Error in 230ms (ActiveRecord: 0.4ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___4014579346596350037_47184369390640' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___2009585969254858977_47184381183640' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.1ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:49:08 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (8.0ms) Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___4014579346596350037_47184369390640' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___2009585969254858977_47184381183640' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.4ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:49:10 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (17.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (21.9ms) Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.3ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___4014579346596350037_47184369390640' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___2009585969254858977_47184381183640' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.9ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:51:43 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (16.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (27.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (593.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (603.3ms) Completed 500 Internal Server Error in 628ms (ActiveRecord: 0.5ms) ActionView::Template::Error (undefined local variable or method `text_area_method' for #<#:0x00555a1246e490>): 1: <% text_tag_method = defined?(is_textarea) && is_textarea ? :text_area_tag : :text_field_tag %> 2: <% render_locale_input = ->(local) { send(text_area_method, "#{input[:name]}[][#{local}]", (input[:value].is_a?(Hash) ? input[:value][local] : input[:value]), (input[:options] || {}).merge('data-locale' => local)) } %> 3: 4:
5:
/home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb:2:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__local_field_html_erb__320475260639913547_69900911736500' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb:13:in `call' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb:13:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__local_field_html_erb__320475260639913547_69900911736500' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb:12:in `each' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb:12:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__local_field_html_erb__320475260639913547_69900911736500' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__step_html_erb__2529154121428677376_69900918398540' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:6:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__steps_html_erb___1921213177945195619_69900918320640' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:5:in `each' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:5:in `each_with_index' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb:5:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__steps_html_erb___1921213177945195619_69900918320640' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:55:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__3115501476156469627_69900916021520' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb:1:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__form_html_erb__3115501476156469627_69900916021520' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:35:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:17:in `block in __home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___3513297656401264355_46922670788400' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer' actionview (4.2.11.1) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:91:in `_layout_for' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:340:in `block in render_partial' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:19:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___2693762525515761805_46922658986580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___3513297656401264355_46922670788400' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.8ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:52:19 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (8.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (22.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (29.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (60.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (65.2ms) Completed 200 OK in 126ms (Views: 122.9ms | ActiveRecord: 0.2ms) Started GET "/assets/shepherd.min.self-1e2222a59f4966a44dbbc6f2879796e26b32eeaf9c8b67b10c8af79b4cda9c26.js?body=1" for ::1 at 2019-09-04 17:52:20 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 17:52:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 29ms (Views: 0.2ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:55:26 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (17.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (33.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (40.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (71.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (76.2ms) Completed 200 OK in 102ms (Views: 97.5ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 17:55:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:55:36 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (203.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (213.7ms) Completed 500 Internal Server Error in 239ms (ActiveRecord: 0.5ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___2378032995753443771_47158606959580' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__2572519784179775959_47158621575880' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.8ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:58:38 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (202.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (212.6ms) Completed 500 Internal Server Error in 238ms (ActiveRecord: 0.4ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___654579970499174567_47155871189320' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__4313700194282707315_47155885639780' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.9ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 17:58:40 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (32.7ms) Completed 500 Internal Server Error in 43ms (ActiveRecord: 0.4ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___654579970499174567_47155871189320' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__4313700194282707315_47155885639780' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.4ms) Started GET "/" for ::1 at 2019-09-04 18:38:04 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.9ms) Completed 500 Internal Server Error in 31ms (ActiveRecord: 0.0ms) LoadError (cannot load such file -- sass): app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1987124899951392031_69867998931840' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.9ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:39:49 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (35.0ms) Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.4ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___654579970499174567_47155871189320' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__4313700194282707315_47155885639780' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.9ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:39:58 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (200.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (210.6ms) Completed 500 Internal Server Error in 236ms (ActiveRecord: 0.4ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3750960047091169940_47016975011840' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___3219182815625762039_47016989458600' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.1ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:40:27 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (341.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (350.5ms) Completed 200 OK in 423ms (Views: 402.6ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/components/base.self-a5ede59d345a9c663605cf49c8dab466cbb72b6b408ec4e602cf7b2b1fb16088.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/components/button.self-4c2f3e13cb7a0ece852a0704f12e9f84ccb1bbe3e055f82a61adc40f49fdafe9.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/components/body.self-1fe3c0b4c9c0ee6e6419da6a390e129da6a00c26cbd0e46dd80dc2a85c7742c8.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/components/checkbox.self-4da4d65996f7cdd91488a2445dfd22f895de1d1e3c75886539d79e4e3e9f6506.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/components/link.self-f257031531c78d41279c03296f4337ac8ac241bd76346c4c46afae51320bdb5a.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/components/form.self-61729bc5eedc3e72f9d0f4dda51bfd1c099d628c2adf59d204dadf3a659d8eb5.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/components/select.self-096d45c755177f829c16e3a3a84e2115accff7bcd2a153e387b1d31c058093ac.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/components/loading.self-994cec6ad2b1bed6324f68ede33aa3ca3a8de52b58070763beead530adfac926.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/tours.self-92d4a507b6cb4ce79bc91082db938d5c9d6ccb48005d86910198963aa17bc770.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/sessions.self-184558b3edfd1a4f0dae0385d52ccca8bfa6433e07853fb1a68a500018637a37.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/shepherd/base.self-70c2ee857b814f012779c89d313425985ac9779363366e3165d0f3b6db5230f8.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/assets/intro/admin/tour.self-539cf3cac68a1d894a4f37a9b38d38a8c2835cfed046b0601ad73db25771a11c.css?body=1" for ::1 at 2019-09-04 18:40:28 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 18:40:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 28ms (Views: 0.2ms | ActiveRecord: 1.1ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:41:44 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (18.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (60.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (65.3ms) Completed 200 OK in 91ms (Views: 87.2ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 18:41:44 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:41:52 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (210.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (219.6ms) Completed 500 Internal Server Error in 245ms (ActiveRecord: 0.4ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___3576113353746093189_47279481997240' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb___2002797307042849943_47279483645120' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.2ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:43:42 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (25.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (213.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (223.3ms) Completed 200 OK in 272ms (Views: 251.4ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 18:43:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 29ms (Views: 0.3ms | ActiveRecord: 1.2ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:45:26 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (11.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (30.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (41.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (73.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (78.0ms) Completed 200 OK in 211ms (Views: 207.6ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tour.self-dc4c2b67cf3450b84edaad4f45b6e6619498a79d5705ebe0ed8d58a45d5e3ba4.css?body=1" for ::1 at 2019-09-04 18:45:26 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 18:45:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:55:39 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (22.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (31.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (65.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (70.0ms) Completed 200 OK in 108ms (Views: 105.1ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 18:55:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 18:57:01 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (18.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (27.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (58.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (62.7ms) Completed 200 OK in 108ms (Views: 103.7ms | ActiveRecord: 0.4ms) Started GET "/assets/intro/admin/tour.self-c7dbdb7054e1a7eea7d8a636d3da2036f9a64da5a78ceaff82a76cc49d009d17.css?body=1" for ::1 at 2019-09-04 18:57:01 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 18:57:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 19:01:52 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (9.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (27.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (36.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (65.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (69.9ms) Completed 200 OK in 123ms (Views: 119.0ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/admin/tour.self-e8cf1f02853e622dd7da9b7a76187fe842b93eaead77286f1a39d90b24dc7e17.css?body=1" for ::1 at 2019-09-04 19:01:52 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 19:01:52 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 19:02:37 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (22.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (31.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (68.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (73.8ms) Completed 200 OK in 101ms (Views: 97.5ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 19:02:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 19:05:16 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (28.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (49.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (52.8ms) Completed 200 OK in 97ms (Views: 95.2ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/tour.self-77df8cff1cd438bc94903891482f4484a16452aa154839dc87d9bf4a8beeaa18.css?body=1" for ::1 at 2019-09-04 19:05:16 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 19:05:16 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.9ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 19:11:06 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (2.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (26.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (38.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (67.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (70.9ms) Completed 200 OK in 98ms (Views: 94.8ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 19:11:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 19:12:18 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (17.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (31.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (35.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (48.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (50.6ms) Completed 200 OK in 76ms (Views: 74.8ms | ActiveRecord: 0.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 19:12:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 19:13:21 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (15.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (34.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (43.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (79.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (84.2ms) Completed 200 OK in 111ms (Views: 107.4ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 19:13:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 19:14:11 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (18.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (25.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (40.9ms) Completed 200 OK in 91ms (Views: 88.9ms | ActiveRecord: 0.2ms) Started GET "/assets/intro/admin/tour.self-769d450505bf3543d8c54c4c4f110791e14a3027644cd27aa53b1348f40756e0.css?body=1" for ::1 at 2019-09-04 19:14:11 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 19:14:11 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/1/edit" for ::1 at 2019-09-04 19:16:00 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (12.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (40.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (56.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (92.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (97.7ms) Completed 200 OK in 122ms (Views: 118.1ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1%2Fedit" for ::1 at 2019-09-04 19:16:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/1/edit"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:16:44 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Km47wMMszLqt2eHdZ4ClCHpB7rOa+NDmASdVOPqf15sc3v1WwYUN52Z3oXZhtzt+Hyi2hiKwgGCATpqVP7zCgg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>[{"en"=>"brabr", "zh-CN"=>"小明"}, {"en"=>"ntns", "zh-CN"=>"ntns"}], "content"=>[{"en"=>"小明22", "zh-CN"=>"barb"}, {"en"=>"tnstnstnstns", "zh-CN"=>"tnstnstnstns"}], "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>[{"en"=>"brabrb", "zh-CN"=>"小明小明小明"}], "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title:\n - !ruby/hash:ActionController::Parameters\n en: brabr\n zh-CN: \"小明\"\n - !ruby/hash:ActionController::Parameters\n en: ntns\n zh-CN: ntns\n content:\n - !ruby/hash:ActionController::Parameters\n en: \"小明22\"\n zh-CN: barb\n - !ruby/hash:ActionController::Parameters\n en: tnstnstnstns\n zh-CN: tnstnstnstns\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n image_url: \"/uploads/intro/20190903/1567521605_X8R-cH65.png\"\n image_width: '248'\n image_height: '248'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text:\n- !ruby/hash:ActionController::Parameters\n en: brabrb\n zh-CN: \"小明小明小明\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 11:16:44.870710"], ["id", 1]]  (7.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.5ms) Completed 200 OK in 93ms (Views: 44.1ms | ActiveRecord: 8.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:16:45 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:18:14 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Km47wMMszLqt2eHdZ4ClCHpB7rOa+NDmASdVOPqf15sc3v1WwYUN52Z3oXZhtzt+Hyi2hiKwgGCATpqVP7zCgg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>[{"en"=>"brabr", "zh-CN"=>"小明"}, {"en"=>"ntns", "zh-CN"=>"ntns"}], "content"=>[{"en"=>"小明22", "zh-CN"=>"barb"}, {"en"=>"tnstnstnstns", "zh-CN"=>"tnstnstnstns"}], "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>[{"en"=>"brabrb", "zh-CN"=>"小明小明小明"}], "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.7ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:18:14.989369"], ["id", 1]]  (6.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (35.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (37.9ms) Completed 200 OK in 124ms (Views: 60.1ms | ActiveRecord: 7.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:18:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.8ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:19:03 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vu/JxJ3i98JzY5bq4P1nNbX55E6TpmHcgHx6I1W2fC+IXw9Sn0s2n7jN1kHmyvlD0JC8eyvuMVoBFbWOkJVpNg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming", "zh-CN"=>"小明明"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"zh-CN", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: !ruby/hash:ActionController::Parameters\n en: ''\n zh-CN: ''\n content: !ruby/hash:ActionController::Parameters\n en: ''\n zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n image_url: \"/uploads/intro/20190903/1567521605_X8R-cH65.png\"\n image_width: '248'\n image_height: '248'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: !ruby/hash:ActionController::Parameters\n en: xiaoming\n zh-CN: \"小明明\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 11:19:03.737354"], ["id", 1]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (39.0ms) Completed 200 OK in 92ms (Views: 58.0ms | ActiveRecord: 7.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:19:04 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.7ms) DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."id" DESC LIMIT 1 Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:21:06 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"i2Xcwau9k1BCOU+XbzK5HKpCchVqcpFESJ0Ukz4Ekzi91RpXqRRSDYmXDzxpBSdqzysqINI6wcLJ9Ns++yeGIQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming", "zh-CN"=>"小明明"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.6ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:21:35.602663"], ["id", 1]]  (4.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (20.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (27.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (59.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (64.3ms) Completed 200 OK in 29136ms (Views: 106.2ms | ActiveRecord: 6.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:21:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 20ms (Views: 0.3ms | ActiveRecord: 1.2ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:21:47 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rfBPRzZVOSI3SoBGnTn0LkVko4Y/C+2k2fI7Ew+IZxSbQInRNPz4f/zkwO2bDmpYIA37s4dDvSJYm/S+yqtyDQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming", "zh-CN"=>"小明明"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:21:48.098599"], ["id", 1]]  (8.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (283.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (287.6ms) Completed 200 OK in 366ms (Views: 313.4ms | ActiveRecord: 9.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:21:48 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 29ms (Views: 0.3ms | ActiveRecord: 1.1ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:22:22 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"3HQoN7fjRi/Bv6mMc9dsJooW23FsDPyUkaXV3uCdXtTqxO6htUqHcgoR6Sd14PJQ73+DRNRErBIQzBpzJb5LzQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming", "zh-CN"=>"小明明"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"zh-CN", "button"=>"", "id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:22:22.384755"], ["id", 1]]  (7.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (57.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (59.2ms) Completed 200 OK in 115ms (Views: 75.1ms | ActiveRecord: 8.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:22:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:22:36 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"sdSQGImml02Ncr9140/J59midddon94qLjgCRFJMVPSHZFaOiw9WEEbc/97leFeRvMst4tDXjqyvUc3pl29B7Q==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: !ruby/hash:ActionController::Parameters\n en: ''\n zh-CN: ''\n content: !ruby/hash:ActionController::Parameters\n en: ''\n zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n image_url: \"/uploads/intro/20190903/1567521605_X8R-cH65.png\"\n image_width: '248'\n image_height: '248'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: !ruby/hash:ActionController::Parameters\n en: xiaoming2\n zh-CN: \"小明明\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 11:22:36.644709"], ["id", 1]]  (5.8ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.6ms) Completed 200 OK in 70ms (Views: 40.3ms | ActiveRecord: 6.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:22:36 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:22:43 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KmGJHLaI02ah8w9E1VcZMPoeKKJ0MNSSt+A560G4cegc0U+KtCESO2pdT+/TYIdGn3dwl8x4hBQ2ifZGhJtk8Q==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"zh-CN", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title: !ruby/hash:ActionController::Parameters\n en: ''\n zh-CN: ''\n content: !ruby/hash:ActionController::Parameters\n en: ''\n zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\n- !ruby/hash:ActionController::Parameters\n image_url: \"/uploads/intro/20190903/1567521605_X8R-cH65.png\"\n image_width: '248'\n image_height: '248'\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text: !ruby/hash:ActionController::Parameters\n en: xiaoming2\n zh-CN: \"小明明222\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 11:22:43.614840"], ["id", 1]]  (3.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.5ms) Completed 200 OK in 69ms (Views: 42.6ms | ActiveRecord: 4.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:22:43 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:23:47 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"n2NqK0o1WNC1f2bt50bDcqxNZds8lzCKXBmD7XPVxc6p06y9SJyZjX7RJkbhcV0EySQ97oTfYAzdcExAtvbQ1w==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"zh-CN", "button"=>"", "id"=>"1"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:23:47.596754"], ["id", 1]]  (4.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (9.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (20.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (23.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (34.4ms) Completed 200 OK in 73ms (Views: 50.9ms | ActiveRecord: 4.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:23:47 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:24:02 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:24:02.023236"], ["id", 1]]  (3.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (31.3ms) Completed 200 OK in 77ms (Views: 50.0ms | ActiveRecord: 4.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:24:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:25:20 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Jm3TWfct2rW/WYj7ATlzqxfAyWwqq5qvs8lQcQp4/IQQ3RXP9YQb6HT3yFAHDu3dcqmRWZLjyikyoJ/cz1vpnQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"brbarb", "zh-CN"=>"brabr"}, "content"=>{"en"=>"brbar", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "id"=>"attempt"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.2ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:25:20 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (38.0ms) Completed 200 OK in 77ms (Views: 73.1ms | ActiveRecord: 0.3ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:25:30 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Jm3TWfct2rW/WYj7ATlzqxfAyWwqq5qvs8lQcQp4/IQQ3RXP9YQb6HT3yFAHDu3dcqmRWZLjyikyoJ/cz1vpnQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"brbarb", "zh-CN"=>"brabr"}, "content"=>{"en"=>"brbar", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:25:30 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (33.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (44.1ms) Completed 200 OK in 79ms (Views: 76.6ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:25:34 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:25:34.865543"], ["id", 1]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (21.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (25.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (36.2ms) Completed 200 OK in 77ms (Views: 52.7ms | ActiveRecord: 7.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:25:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:25:46 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"TYd2r8VSY+PboGOrYBjIz20TxMgx39zfWKFF9XZCsGh7N7A5x/uivhAOIwBmL1a5CHqc/YmXjFnZyIpYs2GlcQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:25:46 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (27.7ms) Completed 200 OK in 55ms (Views: 53.2ms | ActiveRecord: 0.3ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:27:13 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:27:13.715692"], ["id", 1]]  (5.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (30.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (31.7ms) Completed 200 OK in 76ms (Views: 54.3ms | ActiveRecord: 5.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:27:14 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:27:18 +0800 Processing by Intro::Admin::ToursController#update as JS Parameters: {"utf8"=>"✓", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:27:18.459069"], ["id", 1]]  (4.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (9.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (30.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (39.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (56.1ms) Completed 200 OK in 110ms (Views: 82.1ms | ActiveRecord: 4.7ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:27:21 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Intro::Tour Exists (0.5ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.6ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:27:21.236448"], ["id", 1]]  (6.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (38.8ms) Completed 200 OK in 132ms (Views: 64.6ms | ActiveRecord: 7.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:27:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:27:28 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:27:28.480985"], ["id", 1]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (31.0ms) Completed 200 OK in 94ms (Views: 48.4ms | ActiveRecord: 6.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:27:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:28:25 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:28:25.618058"], ["id", 1]]  (6.9ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (246.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (250.2ms) Completed 500 Internal Server Error in 333ms (ActiveRecord: 7.8ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___1002584987021499835_47088657667860' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__4470094920629161293_47088657916760' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:48:in `update' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:38:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.3ms) Started GET "/intro/admin/tours/1" for ::1 at 2019-09-04 19:28:27 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (7.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (8.6ms) Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) LoadError (cannot load such file -- sass): activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.11.1) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.11.1) lib/active_support/dependencies.rb:274:in `require' sprockets (3.7.2) lib/sprockets/autoload/sass.rb:1:in `' sprockets (3.7.2) lib/sprockets/sass_processor.rb:47:in `initialize' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `new' sprockets (3.7.2) lib/sprockets/sass_processor.rb:26:in `instance' sprockets (3.7.2) lib/sprockets/sass_processor.rb:34:in `cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:93:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/cached_environment.rb:22:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:53:in `processor_cache_key' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `block in processors_cache_keys' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `map' sprockets (3.7.2) lib/sprockets/processor_utils.rb:102:in `processors_cache_keys' sprockets (3.7.2) lib/sprockets/processing.rb:159:in `resolve_processors_cache_key_uri' sprockets (3.7.2) lib/sprockets.rb:162:in `block in ' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `call' sprockets (3.7.2) lib/sprockets/dependencies.rb:67:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/cached_environment.rb:23:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:59:in `resolve_dependency' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `block in resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `map' sprockets (3.7.2) lib/sprockets/loader.rb:268:in `resolve_dependencies' sprockets (3.7.2) lib/sprockets/loader.rb:55:in `block in load' sprockets (3.7.2) lib/sprockets/loader.rb:311:in `block in fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `each_with_index' sprockets (3.7.2) lib/sprockets/loader.rb:307:in `fetch_asset_from_dependency_cache' sprockets (3.7.2) lib/sprockets/loader.rb:44:in `load' sprockets (3.7.2) lib/sprockets/cached_environment.rb:20:in `block in initialize' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `yield' sprockets (3.7.2) lib/sprockets/cached_environment.rb:47:in `load' sprockets (3.7.2) lib/sprockets/base.rb:66:in `find_asset' sprockets (3.7.2) lib/sprockets/base.rb:73:in `find_all_linked_assets' sprockets (3.7.2) lib/sprockets/manifest.rb:142:in `block in find' sprockets (3.7.2) lib/sprockets/legacy.rb:114:in `block (2 levels) in logical_paths' sprockets (3.7.2) lib/sprockets/path_utils.rb:228:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:231:in `block in stat_tree' sprockets (3.7.2) lib/sprockets/path_utils.rb:212:in `block in stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `each' sprockets (3.7.2) lib/sprockets/path_utils.rb:209:in `stat_directory' sprockets (3.7.2) lib/sprockets/path_utils.rb:227:in `stat_tree' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:105:in `block in logical_paths' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `each' sprockets (3.7.2) lib/sprockets/legacy.rb:104:in `logical_paths' sprockets (3.7.2) lib/sprockets/manifest.rb:140:in `find' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `each' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `map' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:50:in `precompiled_assets' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?' sprockets-rails (3.2.1) lib/sprockets/railtie.rb:251:in `block (3 levels) in ' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:359:in `precompiled?' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:348:in `find_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `each' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `detect' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:241:in `resolve_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:141:in `block in javascript_include_tag' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `map' sprockets-rails (3.2.1) lib/sprockets/rails/helper.rb:140:in `javascript_include_tag' /home/jinhu/Repos/intro/lib/intro/helpers/view_helper.rb:19:in `intro_tags' /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb:2:in `__home_jinhu__epos_intro_app_views_intro_admin_tours__container_html_erb___1002584987021499835_47088657667860' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:51:in `render_partial' actionview (4.2.11.1) lib/action_view/helpers/rendering_helper.rb:30:in `render' /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb:16:in `__home_jinhu__epos_intro_app_views_intro_admin_tours_edit_html_erb__4470094920629161293_47088657916760' actionview (4.2.11.1) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.11.1) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:333:in `instrument' actionview (4.2.11.1) lib/action_view/template.rb:143:in `render' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:46:in `render_template' actionview (4.2.11.1) lib/action_view/renderer/renderer.rb:27:in `render' actionview (4.2.11.1) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.11.1) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.11.1) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.11.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.11.1) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.11.1) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:43:in `render' /home/jinhu/Repos/intro/app/controllers/intro/admin/tours_controller.rb:41:in `show' actionpack (4.2.11.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:505:in `call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:92:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.11.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.11.1) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.11.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.11.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.11.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.11.1) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.11.1) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.11.1) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.11.1) lib/action_controller/metal.rb:237:in `block in action' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `call' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:43:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/railtie.rb:194:in `public_send' railties (4.2.11.1) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.11.1) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.11.1) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.11.1) lib/action_dispatch/routing/route_set.rb:817:in `call' rack (1.6.11) lib/rack/etag.rb:24:in `call' rack (1.6.11) lib/rack/conditionalget.rb:25:in `call' rack (1.6.11) lib/rack/head.rb:13:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.2ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:28:49 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:28:49.655892"], ["id", 1]]  (6.7ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (350.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (354.4ms) Completed 200 OK in 458ms (Views: 407.1ms | ActiveRecord: 7.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:28:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 28ms (Views: 0.5ms | ActiveRecord: 1.3ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:28:52 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"r5y62KkbTBCYeD26cdBdZaaod13QDo4nU/jfMVsGYK2ZLHxOq7KNTVPWfRF358MTw8EvaGhG3qHSkRCcniV1tA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"{\"en\"=>\"\", \"zh-CN\"=>\"\"}", "content"=>"{\"en\"=>\"\", \"zh-CN\"=>\"\"}", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 6ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:28:52 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (53.6ms) Completed 200 OK in 88ms (Views: 84.4ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:29:01 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"r5y62KkbTBCYeD26cdBdZaaod13QDo4nU/jfMVsGYK2ZLHxOq7KNTVPWfRF358MTw8EvaGhG3qHSkRCcniV1tA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rabrbarbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:29:01 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (29.3ms) Completed 200 OK in 63ms (Views: 59.7ms | ActiveRecord: 0.2ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:29:02 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"r5y62KkbTBCYeD26cdBdZaaod13QDo4nU/jfMVsGYK2ZLHxOq7KNTVPWfRF358MTw8EvaGhG3qHSkRCcniV1tA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rabrbarbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:29:02 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (47.5ms) Completed 200 OK in 84ms (Views: 80.9ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:29:06 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"r5y62KkbTBCYeD26cdBdZaaod13QDo4nU/jfMVsGYK2ZLHxOq7KNTVPWfRF358MTw8EvaGhG3qHSkRCcniV1tA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rabrbarbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 4ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:29:06 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (43.3ms) Completed 200 OK in 81ms (Views: 77.4ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:29:07 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"r5y62KkbTBCYeD26cdBdZaaod13QDo4nU/jfMVsGYK2ZLHxOq7KNTVPWfRF358MTw8EvaGhG3qHSkRCcniV1tA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brba", "content"=>"rabrbarbab", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 6ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:29:07 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (81.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (92.6ms) Completed 200 OK in 127ms (Views: 124.7ms | ActiveRecord: 0.3ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:29:43 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"r5y62KkbTBCYeD26cdBdZaaod13QDo4nU/jfMVsGYK2ZLHxOq7KNTVPWfRF358MTw8EvaGhG3qHSkRCcniV1tA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"brbabrabrb", "content"=>"rabrbarbabbrabr", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:29:43 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (42.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (55.2ms) Completed 200 OK in 92ms (Views: 89.3ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:30:28 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:30:28.456226"], ["id", 1]]  (5.3ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.7ms) Completed 200 OK in 83ms (Views: 44.8ms | ActiveRecord: 6.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:30:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:30:31 +0800 Error occurred while parsing request parameters. Contents: utf8=%E2%9C%93&_method=patch&authenticity_token=oaFs4tFEPvPgMHok2j51inMsl3JFdx7zLNUyBm65sOGXEap00%2B3%2FriueOo%2FcCev8FkXPR%2F0%2FTnWtvP2rq5ql%2BA%3D%3D&tour%5Broute%5D%5Bsimple%5D=brbarba&tour%5Bident%5D=brbarbabra&tour%5Bcontroller_path%5D=brabrab&tour%5Baction_name%5D=brabrab&tour%5Broute%5D%5Bquery%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Btitle%5D=%7B%22en%22%3D%3E%22%22%2C+%22zh-CN%22%3D%3E%22%22%7D&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bcontent%5D=%7B%22en%22%3D%3E%22%22%2C+%22zh-CN%22%3D%3E%22%22%7D&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_url%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_width%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_height%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_placement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Belement%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bplacement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bz_index%5D=99&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Btitle%5D=brab&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bcontent%5D=brab&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_url%5D=%2Fuploads%2Fintro%2F20190903%2F1567521605_X8R-cH65.png&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_width%5D=248&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_height%5D=248&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_placement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Belement%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bplacement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bz_index%5D=99&tour%5Boptions%5D%5Bbtn_visible%5D=1&tour%5Boptions%5D%5Bbtn_complete_text%5D=%7B%22en%22%3D%3E%22xiaoming2%22%2C+%22zh-CN%22%3D%3E%22%E5%B0%8F%E6%98%8E%E6%98%8E222%22%7D&tour%5Boptions%5D%5Bbtn_complete_link%5D=&tour%5Bexpired_at%5D= ActionDispatch::ParamsParser::ParseError (795: unexpected token at 'utf8=%E2%9C%93&_method=patch&authenticity_token=oaFs4tFEPvPgMHok2j51inMsl3JFdx7zLNUyBm65sOGXEap00%2B3%2FriueOo%2FcCev8FkXPR%2F0%2FTnWtvP2rq5ql%2BA%3D%3D&tour%5Broute%5D%5Bsimple%5D=brbarba&tour%5Bident%5D=brbarbabra&tour%5Bcontroller_path%5D=brabrab&tour%5Baction_name%5D=brabrab&tour%5Broute%5D%5Bquery%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Btitle%5D=%7B%22en%22%3D%3E%22%22%2C+%22zh-CN%22%3D%3E%22%22%7D&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bcontent%5D=%7B%22en%22%3D%3E%22%22%2C+%22zh-CN%22%3D%3E%22%22%7D&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_url%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_width%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_height%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_placement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Belement%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bplacement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bz_index%5D=99&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Btitle%5D=brab&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bcontent%5D=brab&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_url%5D=%2Fuploads%2Fintro%2F20190903%2F1567521605_X8R-cH65.png&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_width%5D=248&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_height%5D=248&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_placement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Belement%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bplacement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bz_index%5D=99&tour%5Boptions%5D%5Bbtn_visible%5D=1&tour%5Boptions%5D%5Bbtn_complete_text%5D=%7B%22en%22%3D%3E%22xiaoming2%22%2C+%22zh-CN%22%3D%3E%22%E5%B0%8F%E6%98%8E%E6%98%8E222%22%7D&tour%5Boptions%5D%5Bbtn_complete_link%5D=&tour%5Bexpired_at%5D='): actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:53:in `rescue in parse_formatted_parameters' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:32:in `parse_formatted_parameters' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:23:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (1.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (12.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:30:43 +0800 Error occurred while parsing request parameters. Contents: utf8=%E2%9C%93&_method=patch&authenticity_token=oaFs4tFEPvPgMHok2j51inMsl3JFdx7zLNUyBm65sOGXEap00%2B3%2FriueOo%2FcCev8FkXPR%2F0%2FTnWtvP2rq5ql%2BA%3D%3D&tour%5Broute%5D%5Bsimple%5D=brbarba&tour%5Bident%5D=brbarbabra&tour%5Bcontroller_path%5D=brabrab&tour%5Baction_name%5D=brabrab&tour%5Broute%5D%5Bquery%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Btitle%5D=%7B%22en%22%3D%3E%22%22%2C+%22zh-CN%22%3D%3E%22%22%7D&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bcontent%5D=%7B%22en%22%3D%3E%22%22%2C+%22zh-CN%22%3D%3E%22%22%7D&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_url%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_width%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_height%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_placement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Belement%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bplacement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bz_index%5D=99&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Btitle%5D=brab&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bcontent%5D=brab&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_url%5D=%2Fuploads%2Fintro%2F20190903%2F1567521605_X8R-cH65.png&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_width%5D=248&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_height%5D=248&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_placement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Belement%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bplacement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bz_index%5D=99&tour%5Boptions%5D%5Bbtn_visible%5D=1&tour%5Boptions%5D%5Bbtn_complete_text%5D=%7B%22en%22%3D%3E%22xiaoming2%22%2C+%22zh-CN%22%3D%3E%22%E5%B0%8F%E6%98%8E%E6%98%8E222%22%7D&tour%5Boptions%5D%5Bbtn_complete_link%5D=&tour%5Bexpired_at%5D= ActionDispatch::ParamsParser::ParseError (795: unexpected token at 'utf8=%E2%9C%93&_method=patch&authenticity_token=oaFs4tFEPvPgMHok2j51inMsl3JFdx7zLNUyBm65sOGXEap00%2B3%2FriueOo%2FcCev8FkXPR%2F0%2FTnWtvP2rq5ql%2BA%3D%3D&tour%5Broute%5D%5Bsimple%5D=brbarba&tour%5Bident%5D=brbarbabra&tour%5Bcontroller_path%5D=brabrab&tour%5Baction_name%5D=brabrab&tour%5Broute%5D%5Bquery%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Btitle%5D=%7B%22en%22%3D%3E%22%22%2C+%22zh-CN%22%3D%3E%22%22%7D&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bcontent%5D=%7B%22en%22%3D%3E%22%22%2C+%22zh-CN%22%3D%3E%22%22%7D&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_url%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_width%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_height%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_placement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Belement%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bplacement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bz_index%5D=99&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Btitle%5D=brab&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bcontent%5D=brab&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_url%5D=%2Fuploads%2Fintro%2F20190903%2F1567521605_X8R-cH65.png&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_width%5D=248&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_height%5D=248&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bimage_placement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Belement%5D=&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bplacement%5D=top&tour%5Boptions%5D%5Bsteps%5D%5B%5D%5Bz_index%5D=99&tour%5Boptions%5D%5Bbtn_visible%5D=1&tour%5Boptions%5D%5Bbtn_complete_text%5D=%7B%22en%22%3D%3E%22xiaoming2%22%2C+%22zh-CN%22%3D%3E%22%E5%B0%8F%E6%98%8E%E6%98%8E222%22%7D&tour%5Boptions%5D%5Bbtn_complete_link%5D=&tour%5Bexpired_at%5D='): actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:53:in `rescue in parse_formatted_parameters' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:32:in `parse_formatted_parameters' actionpack (4.2.11.1) lib/action_dispatch/middleware/params_parser.rb:23:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.11) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.11) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.11.1) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.11.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call' activerecord (4.2.11.1) lib/active_record/migration.rb:377:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.11.1) lib/active_support/callbacks.rb:88:in `__run_callbacks__' activesupport (4.2.11.1) lib/active_support/callbacks.rb:778:in `_run_call_callbacks' activesupport (4.2.11.1) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.11.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.11.1) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.11.1) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.11.1) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.11) lib/rack/methodoverride.rb:22:in `call' rack (1.6.11) lib/rack/runtime.rb:18:in `call' activesupport (4.2.11.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' actionpack (4.2.11.1) lib/action_dispatch/middleware/static.rb:120:in `call' rack (1.6.11) lib/rack/sendfile.rb:113:in `call' railties (4.2.11.1) lib/rails/engine.rb:518:in `call' railties (4.2.11.1) lib/rails/application.rb:165:in `call' rack (1.6.11) lib/rack/lock.rb:17:in `call' rack (1.6.11) lib/rack/content_length.rb:15:in `call' rack (1.6.11) lib/rack/handler/webrick.rb:88:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /home/jinhu/.rvm/rubies/ruby-2.1.9/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.8ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (1.7ms) Rendered /home/jinhu/.rvm/gems/ruby-2.1.9/gems/actionpack-4.2.11.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (13.9ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:30:46 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:30:46.798475"], ["id", 1]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (38.7ms) Completed 200 OK in 91ms (Views: 59.8ms | ActiveRecord: 6.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:30:47 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:30:48 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hBJxO6HkJTb0J7McLocw+dgVPsb3k8fGG5UQsCziv2uyoreto03kaz+J87cosK6PvXxm80/bl0Ca/N8d6cGqcg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"{\"en\"=>\"\", \"zh-CN\"=>\"\"}", "content"=>"{\"en\"=>\"\", \"zh-CN\"=>\"\"}", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:30:48 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (38.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (50.2ms) Completed 200 OK in 88ms (Views: 85.3ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:30:59 +0800 Processing by Intro::Admin::ToursController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"hBJxO6HkJTb0J7McLocw+dgVPsb3k8fGG5UQsCziv2uyoreto03kaz+J87cosK6PvXxm80/bl0Ca/N8d6cGqcg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"{\"en\"=>\"\", \"zh-CN\"=>\"\"}", "content"=>"{\"en\"=>\"\", \"zh-CN\"=>\"\"}", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}, "id"=>"attempt"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 0]] Redirected to http://localhost:3000/intro/admin/tours Filter chain halted as :require_tour rendered or redirected Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 19:30:59 +0800 Processing by Intro::Admin::ToursController#index as */* Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (39.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (53.3ms) Completed 200 OK in 91ms (Views: 88.0ms | ActiveRecord: 0.3ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:32:02 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:32:02.887935"], ["id", 1]]  (5.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (1.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (30.2ms) Completed 200 OK in 76ms (Views: 50.8ms | ActiveRecord: 6.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:32:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 17ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:32:04 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"qP9o8Q0qzkm4Ok590FvI8jdChl9uiyoAKF21NrQjI5ueT65nD4MPFHOUDtbWbFaEUiveatbDeoapNHqbcQA2gg==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>"{\"en\"=>\"\", \"zh-CN\"=>\"\"}", "content"=>"{\"en\"=>\"\", \"zh-CN\"=>\"\"}", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title"=>"", "content"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>"{\"en\"=>\"xiaoming2\", \"zh-CN\"=>\"小明明222\"}", "btn_complete_link"=>""}, "expired_at"=>""}} Completed 200 OK in 14ms (Views: 1.3ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:32:33 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:32:34.173320"], ["id", 1]]  (5.2ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (17.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (31.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (293.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (297.3ms) Completed 200 OK in 380ms (Views: 331.2ms | ActiveRecord: 6.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:32:34 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 29ms (Views: 0.2ms | ActiveRecord: 1.2ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:32:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Bgwphz4uzu2viaL8R73SmZvb5TZkNX/OkkFKHeSVN3YwvO8RPIcPsGQn4ldBikzv/rK9A9x9L0gTKIWwIbYibw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en"} Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:33:07 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Bgwphz4uzu2viaL8R73SmZvb5TZkNX/OkkFKHeSVN3YwvO8RPIcPsGQn4ldBikzv/rK9A9x9L0gTKIWwIbYibw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en"} Completed 200 OK in 18ms (Views: 1.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:41:17 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:41:17.469592"], ["id", 1]]  (7.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.2ms) Completed 200 OK in 65ms (Views: 41.7ms | ActiveRecord: 7.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:41:17 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:49:30 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:49:30.506888"], ["id", 1]]  (7.1ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (40.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (41.7ms) Completed 200 OK in 90ms (Views: 59.5ms | ActiveRecord: 8.1ms) Started GET "/assets/intro/shepherd.self-a6cbfcc8bac17e184a8c92fc54f086930d2ad390351fff2d055441f101289d57.js?body=1" for ::1 at 2019-09-04 19:49:30 +0800 Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:49:30 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 22ms (Views: 0.2ms | ActiveRecord: 1.2ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:49:41 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"+j4sdSC8xx+y+LMTAnMro5g2VvbAUijXvsjsBMIwgq3MjurjIhUGQnlW87gERLXV/V8Ow3gaeFE/oSOpBxOXtA==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title_en"=>"brab", "title_zh-CN"=>"", "content_en"=>"brabrb", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title_en"=>"brbarb", "title_zh-CN"=>"", "content_en"=>"abrabrbabr", "content_zh-CN"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"xiaoming2brba", "btn_complete_text_zh-CN"=>"小明明222", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en"} Completed 200 OK in 17ms (Views: 1.5ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:50:19 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:50:19.445513"], ["id", 1]]  (16.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (24.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (311.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (314.8ms) Completed 200 OK in 404ms (Views: 340.1ms | ActiveRecord: 16.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:50:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 27ms (Views: 0.2ms | ActiveRecord: 1.2ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:50:29 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"b+v3xuifURaZlnzErHEzjXGPkawmDh2xNGsLSSKK80ZZWzFQ6jaQS1I4PG+qRq37FObJmZ5GTTe1AsTk56nmXw==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title_en"=>"brabr", "title_zh-CN"=>"", "content_en"=>"brabrab", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title_en"=>"brba", "title_zh-CN"=>"", "content_en"=>"brabrbar", "content_zh-CN"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"xiaoming2", "btn_complete_text_zh-CN"=>"小明明222", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en"} Completed 200 OK in 18ms (Views: 2.2ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:50:44 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:50:44.565123"], ["id", 1]]  (16.0ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (44.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (49.4ms) Completed 200 OK in 155ms (Views: 69.0ms | ActiveRecord: 16.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:50:44 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/1" for ::1 at 2019-09-04 19:51:17 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"FI8myMONIFNlZTFZ+dd2P812kIvYR2ZIPZfsfajyuociP+BewSThDq7LcfL/4OhJqB/IvmAPNs68/iPQbdGvng==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title"=>{"en"=>"", "zh-CN"=>""}, "content"=>{"en"=>"", "zh-CN"=>""}, "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text"=>{"en"=>"xiaoming2", "zh-CN"=>"小明明222"}, "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"1"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18) Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) begin transaction Intro::Tour Exists (0.1ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'brbarbabra' AND "intro_tours"."id" != 1) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: brbarba\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 11:51:17.953199"], ["id", 1]]  (12.4ms) commit transaction Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (15.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (229.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (233.5ms) Completed 200 OK in 320ms (Views: 260.7ms | ActiveRecord: 13.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F1" for ::1 at 2019-09-04 19:51:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/1"} User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 25ms (Views: 0.2ms | ActiveRecord: 1.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:51:34 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"pAPO1ZCTlRl6vQESI0D/9Owk+FWy0+XSWvX7mdqiuziSswhDkjpURLETQbkld2GCiU2gYAqbtVTbnDQ0H4GuIQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title_en"=>"babab", "title_zh-CN"=>"小明", "content_en"=>"brabrbab", "content_zh-CN"=>"小明", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title_en"=>"", "title_zh-CN"=>"", "content_en"=>"", "content_zh-CN"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"xiaoming2", "btn_complete_text_zh-CN"=>"小明明222", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en"} Completed 200 OK in 15ms (Views: 1.5ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 19:51:53 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"pAPO1ZCTlRl6vQESI0D/9Owk+FWy0+XSWvX7mdqiuziSswhDkjpURLETQbkld2GCiU2gYAqbtVTbnDQ0H4GuIQ==", "tour"=>{"route"=>{"simple"=>"brbarba", "query"=>""}, "ident"=>"brbarbabra", "controller_path"=>"brabrab", "action_name"=>"brabrab", "options"=>{"steps"=>[{"title_en"=>"babab", "title_zh-CN"=>"小明", "content_en"=>"brabrbab", "content_zh-CN"=>"小明", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}, {"title_en"=>"", "title_zh-CN"=>"", "content_en"=>"", "content_zh-CN"=>"", "image_url"=>"/uploads/intro/20190903/1567521605_X8R-cH65.png", "image_width"=>"248", "image_height"=>"248", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "overlay_visible"=>"1", "btn_visible"=>"1", "btn_complete_text_en"=>"xiaoming2", "btn_complete_text_zh-CN"=>"小明明222", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"zh-CN"} Completed 200 OK in 16ms (Views: 1.4ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-09-04 22:01:34 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.7ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 317ms (Views: 316.0ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-24a2721dc716bcffb0d80f199ca8995e7851078da6a47d91ec4658435d025c12.js?body=1" for ::1 at 2019-09-04 22:01:35 +0800 Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:01:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18)  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 26ms (Views: 0.5ms | ActiveRecord: 1.1ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:01:36 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (34.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (46.9ms) Completed 200 OK in 114ms (Views: 109.4ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-04 22:01:36 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/intro/admin/tours/new" for ::1 at 2019-09-04 22:01:41 +0800 Processing by Intro::Admin::ToursController#new as HTML User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (13.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (29.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (53.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/new.html.erb within layouts/intro/admin/application (58.7ms) Completed 200 OK in 81ms (Views: 78.5ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=new&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2Fnew" for ::1 at 2019-09-04 22:01:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"new", "original_url"=>"http://localhost:3000/intro/admin/tours/new"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "new"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours/route?path=http%3A%2F%2Flocalhost%3A3000" for ::1 at 2019-09-04 22:01:46 +0800 Processing by Intro::Admin::ToursController#route as */* Parameters: {"path"=>"http://localhost:3000", "tour"=>{}} Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/tours" for ::1 at 2019-09-04 22:01:56 +0800 Processing by Intro::Admin::ToursController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"LsFZK1kwwQSOKAHosFnv+e8j5FHZ5zG2YCeu4iOh/W8YcZ+9W5kAWUWGQUO2bnGPikq8ZGGvYTDhTmFP5oLodg==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brabr", "title_zh-CN"=>"", "content_en"=>"brabrbbrab", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>""}  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE "intro_tours"."ident" = 'home#index-qar2y9' LIMIT 1 SQL (0.5ms) INSERT INTO "intro_tours" ("route", "ident", "controller_path", "action_name", "options", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["route", "--- !ruby/hash:ActionController::Parameters\nsource: !ruby/hash:ActionController::Parameters\n controller: home\n action: index\nquery: ''\nsimple: http://localhost:3000\nstrict: false\n"], ["ident", "home#index-qar2y9"], ["controller_path", "home"], ["action_name", "index"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brabr\n title_zh-CN: ''\n content_en: brabrbbrab\n content_zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: ''\nbtn_complete_link: ''\n"], ["created_at", "2019-09-04 14:01:56.965204"], ["updated_at", "2019-09-04 14:01:56.965204"]]  (4.2ms) commit transaction Redirected to http://localhost:3000/intro/admin/tours/2 Completed 302 Found in 51ms (ActiveRecord: 5.2ms) Started GET "/intro/admin/tours/2" for ::1 at 2019-09-04 22:01:56 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"2"} Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.2ms) Completed 200 OK in 42ms (Views: 38.7ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:01:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started PUT "/intro/admin/tours/2/publish?published=true" for ::1 at 2019-09-04 22:01:58 +0800 Processing by Intro::Admin::ToursController#publish as HTML Parameters: {"authenticity_token"=>"7pRmM6tKbtmSgAXeRYeQDL8ScWccIxvufIMrdRI9p8vYJKClqeOvhFkuRXVDsA562nspUqRrS2j96uTY1x6y0g==", "published"=>"true", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.7ms) UPDATE "intro_tours" SET "published" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["published", "t"], ["updated_at", "2019-09-04 14:01:58.561727"], ["id", 2]]  (7.7ms) commit transaction Redirected to http://localhost:3000/intro/admin/tours/2 Completed 302 Found in 37ms (ActiveRecord: 9.2ms) Started GET "/intro/admin/tours/2" for ::1 at 2019-09-04 22:01:58 +0800 Processing by Intro::Admin::ToursController#show as HTML Parameters: {"id"=>"2"} Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]] User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (16.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (45.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (50.3ms) Completed 200 OK in 81ms (Views: 76.7ms | ActiveRecord: 0.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=show&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:01:58 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"show", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "show"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-09-04 22:02:02 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (5.9ms) User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 82ms (Views: 81.3ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:02:02 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.6ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:02:10 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (54.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (58.6ms) Completed 200 OK in 112ms (Views: 106.1ms | ActiveRecord: 1.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-04 22:02:10 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/2/edit" for ::1 at 2019-09-04 22:02:15 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]] User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (9.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (22.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (33.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (68.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (73.4ms) Completed 200 OK in 102ms (Views: 97.7ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2%2Fedit" for ::1 at 2019-09-04 22:02:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/2/edit"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:02:20 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ElHIkN3t4wDxbDsGhQ2vwUlLopQYBFdpzL7KyqBLkJMk4Q4G30QiXTrCe62DOjG3LCL6oaBMB+9N1wVnZWiFig==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"babr", "title_zh-CN"=>"", "content_en"=>"abarbarbarb", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: babr\n title_zh-CN: ''\n content_en: abarbarbarb\n content_zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:02:20.737251"], ["id", 2]]  (6.9ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (14.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (28.7ms) Completed 200 OK in 74ms (Views: 44.5ms | ActiveRecord: 8.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:02:21 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:02:26 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TKV0DEcw1qns12nLwStSGlH4InvCLB+n3tVioTwlaNx6FbKaRZkX9Cd5KWDHHMxsNJF6TnpkTyFfvK0M+QZ9xQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brbarbab", "title_zh-CN"=>"", "content_en"=>"brabrab", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brbarbab\n title_zh-CN: ''\n content_en: brabrab\n content_zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:02:26.321317"], ["id", 2]]  (4.1ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (22.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (24.0ms) Completed 200 OK in 85ms (Views: 46.8ms | ActiveRecord: 5.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:02:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:03:03 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vnjg4DJOxyabiAD6NoWsGsfjdglP1sbMveoV+ut7oyKIyCZ2MOcGe1AmQFEwsjJsooouPPeelko8g9pXLli2Ow==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brabbrab", "title_zh-CN"=>"", "content_en"=>"brabbrbabrabbbrab", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brabbrab\n title_zh-CN: ''\n content_en: brabbrbabrabbbrab\n content_zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:03:03.102590"], ["id", 2]]  (4.1ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (12.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (28.7ms) Completed 200 OK in 87ms (Views: 46.8ms | ActiveRecord: 5.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:03:03 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:03:05 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"vnjg4DJOxyabiAD6NoWsGsfjdglP1sbMveoV+ut7oyKIyCZ2MOcGe1AmQFEwsjJsooouPPeelko8g9pXLli2Ow==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brabbrab", "title_zh-CN"=>"", "content_en"=>"brabbrbabrabbbrab", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.7ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 14:03:05.806634"], ["id", 2]]  (8.2ms) commit transaction User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (15.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (37.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (42.0ms) Completed 200 OK in 113ms (Views: 62.6ms | ActiveRecord: 10.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:03:06 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 22:03:09 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"OUSqsXRI3aLwwEHMad8/dP9uOwAZtdkv8TqzMG0JGgMP9GwnduEc/ztuAWdv6KECmgdjNaH9ialwU3ydqCoPGg==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brb", "title_zh-CN"=>"", "content_en"=>"brab", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en"} Completed 200 OK in 13ms (Views: 1.6ms | ActiveRecord: 0.0ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:03:14 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"OUSqsXRI3aLwwEHMad8/dP9uOwAZtdkv8TqzMG0JGgMP9GwnduEc/ztuAWdv6KECmgdjNaH9ialwU3ydqCoPGg==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brbbrb", "title_zh-CN"=>"", "content_en"=>"brabbrab", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brbbrb\n title_zh-CN: ''\n content_en: brabbrab\n content_zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:03:15.018384"], ["id", 2]]  (5.7ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (19.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (36.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (39.0ms) Completed 200 OK in 107ms (Views: 61.4ms | ActiveRecord: 7.2ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:03:15 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:03:32 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KIroVW+UtIPgDeVnS+nxH3XXDJC1RLVsdKO+PC8dwnQeOi7DbT113iujpcxN3m9pEL5UpQ0M5er1ynGR6j7XbQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"", "content_en"=>"brabr", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brba\n title_zh-CN: ''\n content_en: brabr\n content_zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:03:32.701431"], ["id", 2]]  (4.5ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (26.5ms) Completed 200 OK in 99ms (Views: 44.2ms | ActiveRecord: 5.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:03:33 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:12:42 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"KIroVW+UtIPgDeVnS+nxH3XXDJC1RLVsdKO+PC8dwnQeOi7DbT113iujpcxN3m9pEL5UpQ0M5er1ynGR6j7XbQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"", "content_en"=>"brabr", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.5ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 14:12:43.017050"], ["id", 2]]  (5.1ms) commit transaction User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (14.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (21.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (47.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (52.0ms) Completed 200 OK in 117ms (Views: 71.7ms | ActiveRecord: 6.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:12:43 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:13:04 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WQz0tPvmT4c7tqNlakirZEXXDgBFzvxIbIEdyeNtt5JvvDIi+U+O2vAY485sfzUSIL5WNf2GrM7t6NJkJk6iiw==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"b fzbzbfbzfbzbf", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brba\n title_zh-CN: b fzbzbfbzfbzbf\n content_en: brabr fF bfb\n content_zh-CN: ''\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: ''\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:13:05.008978"], ["id", 2]]  (5.8ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (12.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (18.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (32.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (34.9ms) Completed 200 OK in 101ms (Views: 56.0ms | ActiveRecord: 7.3ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:13:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.4ms | ActiveRecord: 0.9ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:13:09 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WQz0tPvmT4c7tqNlakirZEXXDgBFzvxIbIEdyeNtt5JvvDIi+U+O2vAY485sfzUSIL5WNf2GrM7t6NJkJk6iiw==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"b fzbzbfbzfbzbf", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.5ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 14:13:09.146572"], ["id", 2]]  (8.0ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (1.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (45.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (55.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (92.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (98.1ms) Completed 200 OK in 175ms (Views: 122.8ms | ActiveRecord: 10.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:13:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started POST "/intro/admin/tours/attempt" for ::1 at 2019-09-04 22:13:11 +0800 Processing by Intro::Admin::ToursController#attempt as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"C85JdAhwfyHm01zoXMaeIuhgsfdst6qpglwnQrhyBPs9fo/iCtm+fC19HENa8QBUjQnpwtT/+i8DNejvfVER4g==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"b fzbzbfbzfbzbf", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en"} Completed 200 OK in 14ms (Views: 1.6ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-09-04 22:13:23 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (7.8ms) User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 66ms (Views: 64.4ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:13:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-09-04 22:13:41 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.7ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:13:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-09-04 22:14:18 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (4.3ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:14:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-09-04 22:14:54 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (3.9ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 47ms (Views: 46.4ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-a9532901936e565704389b584a0d31372f0a2489c5e8e87fc4c7ec462935a91f.js?body=1" for ::1 at 2019-09-04 22:14:54 +0800 Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:14:54 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-09-04 22:15:01 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (5.0ms) User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.2ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:15:01 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2019-09-04 22:15:37 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (2.9ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 48ms (Views: 47.2ms | ActiveRecord: 0.3ms) Started GET "/assets/intro/shepherd.self-973c6c0c9d705dfca62ce91853921a9c801e70789b5a2613656ece258de71fb7.js?body=1" for ::1 at 2019-09-04 22:15:37 +0800 Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:15:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-09-04 22:16:25 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.5ms) User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 85ms (Views: 83.5ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:16:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.8ms) Started GET "/" for ::1 at 2019-09-04 22:18:08 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.5ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 224ms (Views: 223.3ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:18:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18)  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 36ms (Views: 0.4ms | ActiveRecord: 1.2ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:18:19 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"WQz0tPvmT4c7tqNlakirZEXXDgBFzvxIbIEdyeNtt5JvvDIi+U+O2vAY485sfzUSIL5WNf2GrM7t6NJkJk6iiw==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"b fzbzbfbzfbzbf", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 14:18:19.474440"], ["id", 2]]  (7.2ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (35.2ms) Completed 200 OK in 125ms (Views: 60.8ms | ActiveRecord: 8.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:18:19 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:18:38 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JRvdnvMnTN2fYRn6p8lGHXVPWJwyky/t5vEehF4PKOQTqxsI8Y6NgFTPWVGh/thrECYAqYrbf2tnmNEpmyw9/Q==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"小明铜须爸爸", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"小明铜须", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"小明铜须", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"zh-CN", "button"=>"", "id"=>"2"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (58.8ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.2ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brba\n title_zh-CN: \"小明铜须爸爸\"\n content_en: brabr fF bfb\n content_zh-CN: \"小明铜须\"\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: \"小明铜须\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:18:38.289260"], ["id", 2]]  (5.2ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (24.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.7ms) Completed 200 OK in 132ms (Views: 45.0ms | ActiveRecord: 64.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:18:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/" for ::1 at 2019-09-04 22:18:40 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (7.2ms) User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 68ms (Views: 66.5ms | ActiveRecord: 0.5ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:18:41 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.4ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:18:57 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"26Q8Mwt8i63Hpj0j2IB7h7/w34tqL8hZayCWoSDWjcbtFPqlCdVK8AwIfYjet+Xx2pmHvtJnmN/qSVkM5fWY3w==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"小明铜须爸爸", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"小明铜须", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"brabrba", "btn_complete_text_zh-CN"=>"小明铜须", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brba\n title_zh-CN: \"小明铜须爸爸\"\n content_en: brabr fF bfb\n content_zh-CN: \"小明铜须\"\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: brabrba\nbtn_complete_text_zh-CN: \"小明铜须\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:18:57.434600"], ["id", 2]]  (5.3ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (2.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (25.8ms) Completed 200 OK in 74ms (Views: 40.3ms | ActiveRecord: 6.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:18:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.5ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.8ms | ActiveRecord: 0.9ms) Started GET "/" for ::1 at 2019-09-04 22:19:13 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.4ms) User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 221ms (Views: 219.9ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:19:14 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18)  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 35ms (Views: 0.4ms | ActiveRecord: 1.1ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:19:23 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0imnwgZtLwvGphaOu+kzrrivKtGIBgN5TUKvfyxbYcbkmWFUBMTuVg0IViW93q3Y3cZy5DBOU//MK2DS6Xh03w==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"小明铜须爸爸", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"小明铜须", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"小明铜须", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction Intro::Tour Exists (0.2ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.3ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brba\n title_zh-CN: \"小明铜须爸爸\"\n content_en: brabr fF bfb\n content_zh-CN: \"小明铜须\"\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: \"小明铜须\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:19:23.995732"], ["id", 2]]  (7.1ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (10.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (20.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (29.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (33.4ms) Completed 200 OK in 101ms (Views: 57.7ms | ActiveRecord: 8.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:19:24 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started GET "/" for ::1 at 2019-09-04 22:19:26 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (7.8ms) User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 73ms (Views: 71.7ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:19:26 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-09-04 22:19:50 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (2.6ms) Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2019-09-04 22:19:50 +0800 Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2019-09-04 22:19:50 +0800 Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:19:56 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (43.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (48.7ms) Completed 200 OK in 85ms (Views: 79.3ms | ActiveRecord: 1.0ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-04 22:19:57 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-09-04 22:20:00 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"+Q7Vo84+6U0ojB9gPxgnz0ylKYcBivZR5PEVcHUhbI7PvhM1zJcoEOMiX8s5L7m5KcxxsrnCptdlmNrdsAJ5lw=="} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-09-04 22:20:00 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.9ms) Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-09-04 22:20:01 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.2ms) Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-09-04 22:22:18 +0800 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.3ms) Completed 200 OK in 226ms (Views: 225.6ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:22:18 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18)  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 38ms (Views: 0.2ms | ActiveRecord: 1.2ms) Started GET "/" for ::1 at 2019-09-04 22:22:20 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (5.9ms) Completed 200 OK in 62ms (Views: 61.3ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:22:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:22:22 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-09-04 22:22:22 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (4.3ms) Completed 200 OK in 56ms (Views: 54.2ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-09-04 22:22:23 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"fqYwe0SrxjS7wQgSl6rZjkWLGuTu23GSbRnk5m/8SCRIFvbtRgIHaXBvSLmRnUf4IOJC0VaTIRTscCtLqt9dPQ==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:22:23 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (28.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (40.6ms) Completed 200 OK in 70ms (Views: 66.4ms | ActiveRecord: 0.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-04 22:22:23 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.6ms) Started GET "/intro/admin/tours/2/edit" for ::1 at 2019-09-04 22:22:31 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"2"} Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]] User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (76.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (111.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (119.1ms) Completed 200 OK in 147ms (Views: 138.7ms | ActiveRecord: 0.9ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2%2Fedit" for ::1 at 2019-09-04 22:22:31 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/2/edit"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:22:36 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I1or81/jV7Aojho7BideCPnOC74w6lH8uOWt7uNAz+EV6u1lXUqW7eMgWpAAEMB+nKdTi4iiAXo5jGJDJmPa+A==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"小明铜须爸爸", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"小明铜须", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "not_sign_visible"=>"1", "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"小明铜须", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.5ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.4ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brba\n title_zh-CN: \"小明铜须爸爸\"\n content_en: brabr fF bfb\n content_zh-CN: \"小明铜须\"\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nnot_sign_visible: '1'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: \"小明铜须\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:22:37.039974"], ["id", 2]]  (6.9ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (11.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (21.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (23.5ms) Completed 200 OK in 103ms (Views: 40.3ms | ActiveRecord: 8.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:22:37 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 13ms (Views: 0.3ms | ActiveRecord: 0.9ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-09-04 22:22:39 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"23wzOPBdeTSTGAROKmhADhV1Fp10FJY1KcCu4YUxopHtzPWu8vS4aVi2ROUsX954cBxOqMxcxrOoqWFMQBK3iA=="} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-09-04 22:22:39 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.7ms) Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-09-04 22:22:44 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.1ms) Completed 200 OK in 60ms (Views: 59.3ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:22:44 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.3ms) Started GET "/" for ::1 at 2019-09-04 22:22:50 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.4ms) Completed 200 OK in 60ms (Views: 59.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:22:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.5ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:22:51 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-09-04 22:22:51 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.2ms) Completed 200 OK in 56ms (Views: 54.8ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-09-04 22:22:53 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/jgCJFmUlpjkUtHmzKSRCal5YaF7Kzl6fgkB7tRfo8HIiMSyWz1XxS/8kU3Kkw9/zBA5lMNjafz/YM5DEXy22A==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:22:53 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (23.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (26.0ms) Completed 200 OK in 54ms (Views: 50.8ms | ActiveRecord: 0.6ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-04 22:22:53 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.5ms | ActiveRecord: 1.0ms) Started GET "/intro/admin/tours/2/edit" for ::1 at 2019-09-04 22:22:56 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"2"} Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]] User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (7.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (5.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (17.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (26.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (72.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (77.3ms) Completed 200 OK in 108ms (Views: 103.5ms | ActiveRecord: 0.8ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2%2Fedit" for ::1 at 2019-09-04 22:22:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/2/edit"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 14ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:23:00 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"QJDjKB8WX3KBy/pdtbOYrYEfg7QI/S2Z9Z9hlCVifPJ2ICW+Hb+eL0pluvazhAbb5HbbgbC1fR909q454EFp6w==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"小明铜须爸爸", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"小明铜须", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"小明铜须", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.4ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.5ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brba\n title_zh-CN: \"小明铜须爸爸\"\n content_en: brabr fF bfb\n content_zh-CN: \"小明铜须\"\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: \"小明铜须\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:23:00.739266"], ["id", 2]]  (19.3ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (27.9ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (29.6ms) Completed 200 OK in 110ms (Views: 50.1ms | ActiveRecord: 20.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:23:00 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.5ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-09-04 22:23:03 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"1Xisuowi//+xbMGH+bs0bUktodvHJHGvamsxL0JUxr7jyGosjos+onrCgSz/jKobLET57n9sISnrAv6Ch3fTpw=="} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-09-04 22:23:03 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.6ms) Completed 200 OK in 58ms (Views: 55.5ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-09-04 22:23:06 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.1ms) Completed 200 OK in 61ms (Views: 60.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:23:07 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-09-04 22:54:19 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (2.2ms) Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:54:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"} DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks. You can opt into the new behavior and remove this warning by setting: config.active_record.raise_in_transactional_callbacks = true (called from at /home/jinhu/Repos/intro/app/models/intro/tour.rb:18)  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 28ms (Views: 0.3ms | ActiveRecord: 1.6ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:54:36 +0800 Processing by Intro::Admin::ToursController#index as HTML Redirected to http://localhost:3000/intro/admin/sessions/new Filter chain halted as :authenticate rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-09-04 22:54:36 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (2.0ms) Completed 200 OK in 47ms (Views: 45.3ms | ActiveRecord: 0.0ms) Started POST "/intro/admin/sessions" for ::1 at 2019-09-04 22:54:38 +0800 Processing by Intro::Admin::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"19RbB8liF4X2kpQNliw9IiIPrkuk27pajsuo4tF3weHhZJ2Ry8vW2D081KaQG6NUR2b2fhyT6twPomdPFFTU+A==", "username"=>"WRDkzl4", "password"=>"[FILTERED]", "button"=>""} Redirected to http://localhost:3000/intro/admin/tours Completed 302 Found in 4ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:54:38 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.4ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (26.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (27.6ms) Completed 200 OK in 53ms (Views: 50.7ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-04 22:54:38 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 16ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started GET "/intro/admin/tours/2/edit" for ::1 at 2019-09-04 22:54:42 +0800 Processing by Intro::Admin::ToursController#edit as HTML Parameters: {"id"=>"2"} Intro::Tour Load (0.6ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]] User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (8.0ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (6.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (19.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (32.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (77.8ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (83.2ms) Completed 200 OK in 115ms (Views: 108.4ms | ActiveRecord: 1.1ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=edit&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2%2Fedit" for ::1 at 2019-09-04 22:54:42 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"edit", "original_url"=>"http://localhost:3000/intro/admin/tours/2/edit"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "edit"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started GET "/" for ::1 at 2019-09-04 22:54:49 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (7.9ms) User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 68ms (Views: 67.2ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:54:50 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.3ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.8ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:54:56 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"o5WqdLORqJlxDEpOnv1JrZ1LXo0XtsCq3RlyfGIiY7yVJWzisThpxLqiCuWYytfb+CIGuK/+kCxccL3RpwF2pQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"小明铜须爸爸", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"小明铜须", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "not_sign_visible"=>"1", "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"小明铜须", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.5ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.5ms) UPDATE "intro_tours" SET "route" = ?, "options" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["options", "--- !ruby/hash:ActionController::Parameters\nsteps:\n- !ruby/hash:ActionController::Parameters\n title_en: brba\n title_zh-CN: \"小明铜须爸爸\"\n content_en: brabr fF bfb\n content_zh-CN: \"小明铜须\"\n image_url: ''\n image_width: ''\n image_height: ''\n image_placement: top\n element: ''\n placement: top\n z_index: '99'\nnot_sign_visible: '1'\nbtn_visible: '1'\nbtn_complete_text_en: ''\nbtn_complete_text_zh-CN: \"小明铜须\"\nbtn_complete_link: ''\n"], ["updated_at", "2019-09-04 14:54:56.571997"], ["id", 2]]  (5.6ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.6ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (3.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (9.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (13.2ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (25.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (27.2ms) Completed 200 OK in 97ms (Views: 45.2ms | ActiveRecord: 7.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:54:56 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started PATCH "/intro/admin/tours/2" for ::1 at 2019-09-04 22:54:59 +0800 Processing by Intro::Admin::ToursController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"o5WqdLORqJlxDEpOnv1JrZ1LXo0XtsCq3RlyfGIiY7yVJWzisThpxLqiCuWYytfb+CIGuK/+kCxccL3RpwF2pQ==", "tour"=>{"route"=>{"simple"=>"http://localhost:3000", "query"=>""}, "ident"=>"home#index-qar2y9", "controller_path"=>"home", "action_name"=>"index", "options"=>{"steps"=>[{"title_en"=>"brba", "title_zh-CN"=>"小明铜须爸爸", "content_en"=>"brabr fF bfb", "content_zh-CN"=>"小明铜须", "image_url"=>"", "image_width"=>"", "image_height"=>"", "image_placement"=>"top", "element"=>"", "placement"=>"top", "z_index"=>"99"}], "not_sign_visible"=>"1", "btn_visible"=>"1", "btn_complete_text_en"=>"", "btn_complete_text_zh-CN"=>"小明铜须", "btn_complete_link"=>""}, "expired_at"=>""}, "_"=>"en", "button"=>"", "id"=>"2"} Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) begin transaction Intro::Tour Exists (0.3ms) SELECT 1 AS one FROM "intro_tours" WHERE ("intro_tours"."ident" = 'home#index-qar2y9' AND "intro_tours"."id" != 2) LIMIT 1 SQL (0.5ms) UPDATE "intro_tours" SET "route" = ?, "updated_at" = ? WHERE "intro_tours"."id" = ? [["route", "--- !ruby/hash:ActionController::Parameters\nsimple: http://localhost:3000\nquery: ''\nstrict: false\n"], ["updated_at", "2019-09-04 14:54:59.311773"], ["id", 2]]  (6.9ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_step.html.erb (4.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_steps.html.erb (11.3ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_local_field.html.erb (0.4ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_form.html.erb (17.1ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (31.5ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/edit.html.erb within layouts/intro/admin/application (33.7ms) Completed 200 OK in 100ms (Views: 58.5ms | ActiveRecord: 8.5ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=update&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours%2F2" for ::1 at 2019-09-04 22:54:59 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"update", "original_url"=>"http://localhost:3000/intro/admin/tours/2"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "update"], ["published", "t"]] User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 0.8ms) Started GET "/" for ::1 at 2019-09-04 22:55:04 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (9.2ms) User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 71ms (Views: 70.2ms | ActiveRecord: 0.4ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:55:05 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.7ms) Started POST "/intro/tours/record" for ::1 at 2019-09-04 22:55:06 +0800 Processing by Intro::ToursController#record as */* Parameters: {"id"=>2, "tour"=>{"id"=>2}} User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (0.3ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."id" = ? LIMIT 1 [["id", 2]] Intro::TourHistory Load (0.7ms) SELECT "intro_tour_histories".* FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 ORDER BY "intro_tour_histories"."id" ASC LIMIT 1  (0.2ms) begin transaction SQL (3.1ms) INSERT INTO "intro_tour_histories" ("user_id", "tour_id", "touch_count", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["user_id", 1], ["tour_id", 2], ["touch_count", 1], ["created_at", "2019-09-04 14:55:06.263521"], ["updated_at", "2019-09-04 14:55:06.263521"]]  (5.5ms) commit transaction Completed 200 OK in 44ms (Views: 0.6ms | ActiveRecord: 11.1ms) Started GET "/" for ::1 at 2019-09-04 22:55:09 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (8.1ms) User Load (0.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 67ms (Views: 66.3ms | ActiveRecord: 0.7ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:55:09 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/" for ::1 at 2019-09-04 22:55:20 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (7.5ms) User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Completed 200 OK in 58ms (Views: 56.5ms | ActiveRecord: 0.3ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:55:20 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (9.4ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 9.9ms) Started GET "/intro/admin/tours" for ::1 at 2019-09-04 22:55:22 +0800 Processing by Intro::Admin::ToursController#index as HTML User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1 Intro::Tour Load (1.0ms) SELECT "intro_tours".* FROM "intro_tours" ORDER BY "intro_tours"."created_at" DESC LIMIT 15 OFFSET 0 Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/_container.html.erb (52.7ms) Rendered /home/jinhu/Repos/intro/app/views/intro/admin/tours/index.html.erb within layouts/intro/admin/application (56.4ms) Completed 200 OK in 91ms (Views: 86.4ms | ActiveRecord: 1.4ms) Started GET "/intro/tours?controller_path=intro%2Fadmin%2Ftours&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2Fintro%2Fadmin%2Ftours" for ::1 at 2019-09-04 22:55:22 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"intro/admin/tours", "action_name"=>"index", "original_url"=>"http://localhost:3000/intro/admin/tours"}  (0.3ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "intro/admin/tours"], ["action_name", "index"], ["published", "t"]] User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" = 1 AND 1=0 AND (touch_count >= 1) Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.7ms) Started DELETE "/intro/admin/sessions/sign_out" for ::1 at 2019-09-04 22:55:24 +0800 Processing by Intro::Admin::SessionsController#sign_out as HTML Parameters: {"authenticity_token"=>"RlCWwOCkK1l/1Nt/uY6htgNfLppaU1J+fX8neqaOkV9w4FBW4g3qBLR6m9S/uT/AZjZ2r+IbAvj8FujXY62ERg=="} Redirected to http://localhost:3000/intro/admin/sessions/new Completed 302 Found in 3ms (ActiveRecord: 0.0ms) Started GET "/intro/admin/sessions/new" for ::1 at 2019-09-04 22:55:24 +0800 Processing by Intro::Admin::SessionsController#new as HTML Rendered /home/jinhu/Repos/intro/app/views/intro/admin/sessions/new.html.erb within layouts/intro/admin/application (1.6ms) Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.0ms) Started GET "/" for ::1 at 2019-09-04 22:55:28 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.8ms) Completed 200 OK in 62ms (Views: 61.1ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:55:28 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.2ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.2ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.6ms) Started GET "/" for ::1 at 2019-09-04 22:55:35 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.3ms) Completed 200 OK in 62ms (Views: 61.6ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:55:35 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.1ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.4ms) Started GET "/" for ::1 at 2019-09-04 22:55:40 +0800 Processing by HomeController#index as HTML Rendered home/index.html.erb within layouts/application (6.9ms) Completed 200 OK in 73ms (Views: 72.8ms | ActiveRecord: 0.0ms) Started GET "/intro/tours?controller_path=home&action_name=index&original_url=http%3A%2F%2Flocalhost%3A3000%2F" for ::1 at 2019-09-04 22:55:40 +0800 Processing by Intro::ToursController#index as */* Parameters: {"controller_path"=>"home", "action_name"=>"index", "original_url"=>"http://localhost:3000/"}  (0.1ms) SELECT COUNT(*) FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]] Intro::Tour Load (0.1ms) SELECT "intro_tours".* FROM "intro_tours" WHERE "intro_tours"."controller_path" = ? AND "intro_tours"."action_name" = ? AND "intro_tours"."published" = ? [["controller_path", "home"], ["action_name", "index"], ["published", "t"]]  (0.2ms) SELECT "intro_tour_histories"."tour_id" FROM "intro_tour_histories" WHERE "intro_tour_histories"."user_id" IS NULL AND "intro_tour_histories"."tour_id" = 2 AND (touch_count >= 1) Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.5ms)