any_login 1.5.2 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/any_login/application.css +3 -0
- data/app/controllers/any_login/application_controller.rb +1 -9
- data/app/views/any_login/_any_login.html.erb +4 -4
- data/app/views/any_login/assets/_css.html.erb +101 -0
- data/app/views/any_login/assets/_js.html.erb +25 -0
- data/app/views/any_login/svg/_user.html.erb +1 -2
- data/config/routes.rb +0 -2
- data/lib/any_login/helpers.rb +3 -1
- data/lib/any_login/providers/devise.rb +1 -1
- data/lib/any_login/version.rb +1 -1
- data/test/rails_apps/authlogic/db/development.sqlite3 +0 -0
- data/test/rails_apps/authlogic/db/test.sqlite3 +0 -0
- data/test/rails_apps/authlogic/db/test.sqlite3-shm +0 -0
- data/test/rails_apps/authlogic/db/test.sqlite3-wal +0 -0
- data/test/rails_apps/authlogic/log/development.log +438 -0
- data/test/rails_apps/authlogic/log/test.log +1144 -0
- data/test/rails_apps/authlogic/tmp/development_secret.txt +1 -0
- data/test/rails_apps/authlogic/tmp/local_secret.txt +1 -0
- data/test/rails_apps/clearance/config/environment.rb +1 -0
- data/test/rails_apps/clearance/db/development.sqlite3 +0 -0
- data/test/rails_apps/clearance/db/test.sqlite3 +0 -0
- data/test/rails_apps/clearance/db/test.sqlite3-shm +0 -0
- data/test/rails_apps/clearance/db/test.sqlite3-wal +0 -0
- data/test/rails_apps/clearance/log/development.log +388 -0
- data/test/rails_apps/clearance/log/test.log +1110 -0
- data/test/rails_apps/clearance/tmp/development_secret.txt +1 -0
- data/test/rails_apps/clearance/tmp/local_secret.txt +1 -0
- data/test/rails_apps/devise/db/development.sqlite3 +0 -0
- data/test/rails_apps/devise/db/schema.rb +4 -4
- data/test/rails_apps/devise/db/test.sqlite3 +0 -0
- data/test/rails_apps/devise/db/test.sqlite3-shm +0 -0
- data/test/rails_apps/devise/db/test.sqlite3-wal +0 -0
- data/test/rails_apps/devise/log/development.log +1081 -0
- data/test/rails_apps/devise/log/test.log +2120 -0
- data/test/rails_apps/devise/tmp/development_secret.txt +1 -0
- data/test/rails_apps/devise/tmp/local_secret.txt +1 -0
- data/test/rails_apps/sorcery/db/development.sqlite3 +0 -0
- data/test/rails_apps/sorcery/db/test.sqlite3 +0 -0
- data/test/rails_apps/sorcery/db/test.sqlite3-shm +0 -0
- data/test/rails_apps/sorcery/db/test.sqlite3-wal +0 -0
- data/test/rails_apps/sorcery/log/development.log +247 -0
- data/test/rails_apps/sorcery/log/test.log +532 -0
- data/test/rails_apps/sorcery/tmp/development_secret.txt +1 -0
- data/test/rails_apps/sorcery/tmp/local_secret.txt +1 -0
- data/test/test_helper_common.rb +2 -1
- metadata +85 -6
- data/app/assets/javascripts/any_login/application.js +0 -23
@@ -0,0 +1,1081 @@
|
|
1
|
+
[1m[35m (1.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
2
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
3
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
4
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
5
|
+
Migrating to CreateUsers (20150907190739)
|
6
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
7
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "age" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
8
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150907190739"]]
|
9
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[36mcommit transaction[0m
|
10
|
+
Migrating to AddDeviseToUsers (20150907190846)
|
11
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[36mbegin transaction[0m
|
12
|
+
[1m[35m (0.5ms)[0m [1m[35mALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL[0m
|
13
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL[0m
|
14
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "users" ADD "reset_password_token" varchar[0m
|
15
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "users" ADD "reset_password_sent_at" datetime[0m
|
16
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "users" ADD "remember_created_at" datetime[0m
|
17
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL[0m
|
18
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "users" ADD "current_sign_in_at" datetime[0m
|
19
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "users" ADD "last_sign_in_at" datetime[0m
|
20
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "users" ADD "current_sign_in_ip" varchar[0m
|
21
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "users" ADD "last_sign_in_ip" varchar[0m
|
22
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
23
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")[0m
|
24
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150907190846"]]
|
25
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
26
|
+
Migrating to PopulateTestUsers (20150909210357)
|
27
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
28
|
+
[1m[35m (0.6ms)[0m [1m[35mALTER TABLE "users" ADD "role" varchar[0m
|
29
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn0@gmail.com"], ["LIMIT", 1]]
|
30
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 0"], ["age", 9], ["created_at", "2024-06-28 08:00:34.919029"], ["updated_at", "2024-06-28 08:00:34.919029"], ["email", "michaeljohn0@gmail.com"], ["encrypted_password", "$2a$10$l4w0L3m83MoVeFNQM0Fape.ButVbdWxQwrf006O2f94H88EooCLKe"], ["role", "moderator"]]
|
31
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris1@gmail.com"], ["LIMIT", 1]]
|
32
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 1"], ["age", 40], ["created_at", "2024-06-28 08:00:34.988852"], ["updated_at", "2024-06-28 08:00:34.988852"], ["email", "kris1@gmail.com"], ["encrypted_password", "$2a$10$x3LixGYh.0qFNmSwcvDj/OU9vQwB9gxMpN0ylslVnU9VsEBgtIuEO"], ["role", "user"]]
|
33
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor2@gmail.com"], ["LIMIT", 1]]
|
34
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 2"], ["age", 3], ["created_at", "2024-06-28 08:00:35.059949"], ["updated_at", "2024-06-28 08:00:35.059949"], ["email", "igor2@gmail.com"], ["encrypted_password", "$2a$10$XK5J/MF.TNbhdFs9F.hMmurpWOkU4dv5AvMaKNyMc7OwZMMBiyPo6"], ["role", "moderator"]]
|
35
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan3@gmail.com"], ["LIMIT", 1]]
|
36
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 3"], ["age", 46], ["created_at", "2024-06-28 08:00:35.130788"], ["updated_at", "2024-06-28 08:00:35.130788"], ["email", "stan3@gmail.com"], ["encrypted_password", "$2a$10$7jzm2i37UiXmLSn0XZuH3.upjzONbfrVXtQqMbp76qURv6/cEufLG"], ["role", "admin"]]
|
37
|
+
[1m[36mUser Exists? (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob4@gmail.com"], ["LIMIT", 1]]
|
38
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 4"], ["age", 9], ["created_at", "2024-06-28 08:00:35.200504"], ["updated_at", "2024-06-28 08:00:35.200504"], ["email", "bob4@gmail.com"], ["encrypted_password", "$2a$10$QZ/E8jgtkjCX94SMp644COKNJTcSexbonAZysqWFtq.9R4dB4NHQu"], ["role", "admin"]]
|
39
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor5@gmail.com"], ["LIMIT", 1]]
|
40
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 5"], ["age", 71], ["created_at", "2024-06-28 08:00:35.271155"], ["updated_at", "2024-06-28 08:00:35.271155"], ["email", "igor5@gmail.com"], ["encrypted_password", "$2a$10$Sjuw0SaPqF99iL2K6RH0Mu0Ic2vkINbEqaWqLe/1c46LNKSgc8lxW"], ["role", "admin"]]
|
41
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan6@gmail.com"], ["LIMIT", 1]]
|
42
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 6"], ["age", 43], ["created_at", "2024-06-28 08:00:35.343224"], ["updated_at", "2024-06-28 08:00:35.343224"], ["email", "alan6@gmail.com"], ["encrypted_password", "$2a$10$QO5MZF3Fjlgg0/LHLgfbxe9eBHzNltstpgoe7RB6F8iHHSudTT5cG"], ["role", "admin"]]
|
43
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn7@gmail.com"], ["LIMIT", 1]]
|
44
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 7"], ["age", 53], ["created_at", "2024-06-28 08:00:35.413759"], ["updated_at", "2024-06-28 08:00:35.413759"], ["email", "michaeljohn7@gmail.com"], ["encrypted_password", "$2a$10$RwJ9Qnj953u8IG/hc9uAnOoUf0UXIA.rayeKFHK0b9iL79gJ6gQAm"], ["role", "moderator"]]
|
45
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor8@gmail.com"], ["LIMIT", 1]]
|
46
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 8"], ["age", 75], ["created_at", "2024-06-28 08:00:35.484195"], ["updated_at", "2024-06-28 08:00:35.484195"], ["email", "igor8@gmail.com"], ["encrypted_password", "$2a$10$bj6nCKBjxeWi3c3zkPlI.OJeVUXj8/4YQirGz3kB1Re.eJg4g6w.a"], ["role", "moderator"]]
|
47
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris9@gmail.com"], ["LIMIT", 1]]
|
48
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 9"], ["age", 28], ["created_at", "2024-06-28 08:00:35.554479"], ["updated_at", "2024-06-28 08:00:35.554479"], ["email", "kris9@gmail.com"], ["encrypted_password", "$2a$10$t1fPagQFEG5mduXWAyvR2.wCU9HIWOKj3TBWbKfdv3mfC8mW69lEy"], ["role", "admin"]]
|
49
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob10@gmail.com"], ["LIMIT", 1]]
|
50
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 10"], ["age", 9], ["created_at", "2024-06-28 08:00:35.624457"], ["updated_at", "2024-06-28 08:00:35.624457"], ["email", "bob10@gmail.com"], ["encrypted_password", "$2a$10$jb7b/0IMg4wVF0FfRS6.VupYOAb3eF.wKNbfzDH1CBXE/I.6R.fQu"], ["role", "moderator"]]
|
51
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob11@gmail.com"], ["LIMIT", 1]]
|
52
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 11"], ["age", 48], ["created_at", "2024-06-28 08:00:35.698461"], ["updated_at", "2024-06-28 08:00:35.698461"], ["email", "bob11@gmail.com"], ["encrypted_password", "$2a$10$Rk1FhJZ.HeYSZavowuU3BOkbqNdHnR8lfawSeRjU385vMHkfZh/Da"], ["role", "admin"]]
|
53
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor12@gmail.com"], ["LIMIT", 1]]
|
54
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 12"], ["age", 0], ["created_at", "2024-06-28 08:00:35.769338"], ["updated_at", "2024-06-28 08:00:35.769338"], ["email", "igor12@gmail.com"], ["encrypted_password", "$2a$10$mlq7wvBAoQvuxkOukoJYJuVE/CfjybTHOZa91lbECW4hLeTltE.ta"], ["role", "moderator"]]
|
55
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan13@gmail.com"], ["LIMIT", 1]]
|
56
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 13"], ["age", 41], ["created_at", "2024-06-28 08:00:35.838394"], ["updated_at", "2024-06-28 08:00:35.838394"], ["email", "stan13@gmail.com"], ["encrypted_password", "$2a$10$teEGxQVTVZgqCUZhQ6bgIeszrs4Fr5OnZshBmoYzyWKAdDFJ4crtu"], ["role", "moderator"]]
|
57
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan14@gmail.com"], ["LIMIT", 1]]
|
58
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 14"], ["age", 5], ["created_at", "2024-06-28 08:00:35.907424"], ["updated_at", "2024-06-28 08:00:35.907424"], ["email", "alan14@gmail.com"], ["encrypted_password", "$2a$10$601/iuYWzmgF7U.p4Q7cG.wuL.qhK3X9DclceiEzX/AzgLRQ5T8re"], ["role", "moderator"]]
|
59
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob15@gmail.com"], ["LIMIT", 1]]
|
60
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 15"], ["age", 92], ["created_at", "2024-06-28 08:00:35.975619"], ["updated_at", "2024-06-28 08:00:35.975619"], ["email", "bob15@gmail.com"], ["encrypted_password", "$2a$10$mL9mEwW4.LN.7OR.OOHP1.P09RMh/DlAQ9IOh2aI/AGiRCnAX.cAq"], ["role", "moderator"]]
|
61
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris16@gmail.com"], ["LIMIT", 1]]
|
62
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 16"], ["age", 77], ["created_at", "2024-06-28 08:00:36.051889"], ["updated_at", "2024-06-28 08:00:36.051889"], ["email", "kris16@gmail.com"], ["encrypted_password", "$2a$10$Mb/yRf7Fawu7USYPr9cIWuumcFnA9R3HFrZYjRZi9m.8OZ3fNgJh2"], ["role", "moderator"]]
|
63
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn17@gmail.com"], ["LIMIT", 1]]
|
64
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 17"], ["age", 98], ["created_at", "2024-06-28 08:00:36.120438"], ["updated_at", "2024-06-28 08:00:36.120438"], ["email", "michaeljohn17@gmail.com"], ["encrypted_password", "$2a$10$89dP1j2dEW23YgAI2rQg4.Zgo0yg93dVJXvSPjDgYZWlc1Ad/9CJ."], ["role", "moderator"]]
|
65
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob18@gmail.com"], ["LIMIT", 1]]
|
66
|
+
[1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 18"], ["age", 12], ["created_at", "2024-06-28 08:00:36.188877"], ["updated_at", "2024-06-28 08:00:36.188877"], ["email", "bob18@gmail.com"], ["encrypted_password", "$2a$10$GXrPA/zMCRypvmBFety23.9yOgLtzV9eVf9TskXrpLmtEtUOmwFC."], ["role", "admin"]]
|
67
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan19@gmail.com"], ["LIMIT", 1]]
|
68
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 19"], ["age", 46], ["created_at", "2024-06-28 08:00:36.258114"], ["updated_at", "2024-06-28 08:00:36.258114"], ["email", "alan19@gmail.com"], ["encrypted_password", "$2a$10$XWQJAwSZRE3ulWY1iZXLZeiBqZDO0suj0tjU05IlOIMvgxVr8b/NK"], ["role", "user"]]
|
69
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris20@gmail.com"], ["LIMIT", 1]]
|
70
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 20"], ["age", 52], ["created_at", "2024-06-28 08:00:36.327579"], ["updated_at", "2024-06-28 08:00:36.327579"], ["email", "kris20@gmail.com"], ["encrypted_password", "$2a$10$i//7p23tIf1vS2UVz4Fz2.hh5ItiB0EFSJ0is/PPIa6rC4/EZFGVW"], ["role", "admin"]]
|
71
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris21@gmail.com"], ["LIMIT", 1]]
|
72
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 21"], ["age", 29], ["created_at", "2024-06-28 08:00:36.396794"], ["updated_at", "2024-06-28 08:00:36.396794"], ["email", "kris21@gmail.com"], ["encrypted_password", "$2a$10$d8iwLNnF17m2hzmND/xewuOvGSgriQIvQaF6ku40s.0j0M1D1sqTq"], ["role", "user"]]
|
73
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan22@gmail.com"], ["LIMIT", 1]]
|
74
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 22"], ["age", 55], ["created_at", "2024-06-28 08:00:36.465292"], ["updated_at", "2024-06-28 08:00:36.465292"], ["email", "alan22@gmail.com"], ["encrypted_password", "$2a$10$8CggEtEbUOu7nTB2E6MTkeIPbh4TgOqV3MUhkQJ02RYwjUuvtlho6"], ["role", "user"]]
|
75
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris23@gmail.com"], ["LIMIT", 1]]
|
76
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 23"], ["age", 76], ["created_at", "2024-06-28 08:00:36.533950"], ["updated_at", "2024-06-28 08:00:36.533950"], ["email", "kris23@gmail.com"], ["encrypted_password", "$2a$10$WPiOm0SOGns7.6UFGqdeA.hncbYJBx9Sn6MhUpDWxUroMnzBB/lbS"], ["role", "user"]]
|
77
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn24@gmail.com"], ["LIMIT", 1]]
|
78
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 24"], ["age", 80], ["created_at", "2024-06-28 08:00:36.603275"], ["updated_at", "2024-06-28 08:00:36.603275"], ["email", "michaeljohn24@gmail.com"], ["encrypted_password", "$2a$10$7VA2YIUmzu6VYRf0ojvPL.MTmHy4siGJ5SK3rp3GXfVoiiYr3.vAe"], ["role", "moderator"]]
|
79
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor25@gmail.com"], ["LIMIT", 1]]
|
80
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 25"], ["age", 24], ["created_at", "2024-06-28 08:00:36.672866"], ["updated_at", "2024-06-28 08:00:36.672866"], ["email", "igor25@gmail.com"], ["encrypted_password", "$2a$10$hQz5WFRMkxhcAejgr0pNF.gYYNqvQZHpdOC/Hj4xcBz6suVzPJcda"], ["role", "moderator"]]
|
81
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris26@gmail.com"], ["LIMIT", 1]]
|
82
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 26"], ["age", 26], ["created_at", "2024-06-28 08:00:36.742202"], ["updated_at", "2024-06-28 08:00:36.742202"], ["email", "kris26@gmail.com"], ["encrypted_password", "$2a$10$iht82Fwnx84w2efc22TkzOa9y.KsQliKqfpUDYRjtO2WdK9EkJuF6"], ["role", "user"]]
|
83
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan27@gmail.com"], ["LIMIT", 1]]
|
84
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 27"], ["age", 5], ["created_at", "2024-06-28 08:00:36.810607"], ["updated_at", "2024-06-28 08:00:36.810607"], ["email", "alan27@gmail.com"], ["encrypted_password", "$2a$10$koiPZaQ.qgpK/ZhdEpK99OusFQ5EDFnaaSN9AFrDNGWnR4NhpZLLu"], ["role", "user"]]
|
85
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan28@gmail.com"], ["LIMIT", 1]]
|
86
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 28"], ["age", 63], ["created_at", "2024-06-28 08:00:36.879562"], ["updated_at", "2024-06-28 08:00:36.879562"], ["email", "stan28@gmail.com"], ["encrypted_password", "$2a$10$C3Lu3CnxhF0jVP0RDGkkpej5UAiO85z92OdF5767kygdLhNdjpYZe"], ["role", "admin"]]
|
87
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob29@gmail.com"], ["LIMIT", 1]]
|
88
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 29"], ["age", 47], ["created_at", "2024-06-28 08:00:36.948100"], ["updated_at", "2024-06-28 08:00:36.948100"], ["email", "bob29@gmail.com"], ["encrypted_password", "$2a$10$9roNL4VJU7NRnxirn1W/WuxLd6O4rtuJuK7Znej1gS0dKTJLzhB4q"], ["role", "user"]]
|
89
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan30@gmail.com"], ["LIMIT", 1]]
|
90
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 30"], ["age", 3], ["created_at", "2024-06-28 08:00:37.017289"], ["updated_at", "2024-06-28 08:00:37.017289"], ["email", "alan30@gmail.com"], ["encrypted_password", "$2a$10$zw92NPWzaksy4hEyMlNPveVUKMPjN/wPNWL/XSd7Tm0JfNC3DcZ/y"], ["role", "user"]]
|
91
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan31@gmail.com"], ["LIMIT", 1]]
|
92
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 31"], ["age", 59], ["created_at", "2024-06-28 08:00:37.086158"], ["updated_at", "2024-06-28 08:00:37.086158"], ["email", "stan31@gmail.com"], ["encrypted_password", "$2a$10$YFuc9U0vfh99UkR7OeF7OOVKujcPj0XNDa3fDiCTJ0NMDGjXAYRX."], ["role", "admin"]]
|
93
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan32@gmail.com"], ["LIMIT", 1]]
|
94
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 32"], ["age", 13], ["created_at", "2024-06-28 08:00:37.154140"], ["updated_at", "2024-06-28 08:00:37.154140"], ["email", "stan32@gmail.com"], ["encrypted_password", "$2a$10$07VSYri4/K0VuWKeLFvWFOyDRmjmu4WtLvuNyVcL6Mz70Psbvu.Kq"], ["role", "user"]]
|
95
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan33@gmail.com"], ["LIMIT", 1]]
|
96
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 33"], ["age", 90], ["created_at", "2024-06-28 08:00:37.222451"], ["updated_at", "2024-06-28 08:00:37.222451"], ["email", "alan33@gmail.com"], ["encrypted_password", "$2a$10$V3UKv0zS.mFDjZs.sdXc9.gPXgMuQJG9b3LlStBnr.gHD4vylFXuy"], ["role", "moderator"]]
|
97
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan34@gmail.com"], ["LIMIT", 1]]
|
98
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 34"], ["age", 97], ["created_at", "2024-06-28 08:00:37.291798"], ["updated_at", "2024-06-28 08:00:37.291798"], ["email", "stan34@gmail.com"], ["encrypted_password", "$2a$10$higz0b06SAPiglqvhXiKMeOw7qG/dMbSRdK2F39Z6npNF0PLNuN3S"], ["role", "moderator"]]
|
99
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan35@gmail.com"], ["LIMIT", 1]]
|
100
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 35"], ["age", 31], ["created_at", "2024-06-28 08:00:37.361229"], ["updated_at", "2024-06-28 08:00:37.361229"], ["email", "stan35@gmail.com"], ["encrypted_password", "$2a$10$3vH5ExxRrFXn/3Yfwci5DuS054sx8sRnP8dUPcBRH5NKIDbEm.zyy"], ["role", "moderator"]]
|
101
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan36@gmail.com"], ["LIMIT", 1]]
|
102
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 36"], ["age", 70], ["created_at", "2024-06-28 08:00:37.429566"], ["updated_at", "2024-06-28 08:00:37.429566"], ["email", "stan36@gmail.com"], ["encrypted_password", "$2a$10$2ojzPaqbYp2/9ITcqb06Tel.eTlvHUcohcHeGwZHHqeYMxJHKjbji"], ["role", "user"]]
|
103
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn37@gmail.com"], ["LIMIT", 1]]
|
104
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 37"], ["age", 23], ["created_at", "2024-06-28 08:00:37.497969"], ["updated_at", "2024-06-28 08:00:37.497969"], ["email", "michaeljohn37@gmail.com"], ["encrypted_password", "$2a$10$EeVIbPRK49jnbDAjN6vlAOpvSikKdORpuavAI/Udwm1JK8Ytl6bei"], ["role", "admin"]]
|
105
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob38@gmail.com"], ["LIMIT", 1]]
|
106
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 38"], ["age", 80], ["created_at", "2024-06-28 08:00:37.566246"], ["updated_at", "2024-06-28 08:00:37.566246"], ["email", "bob38@gmail.com"], ["encrypted_password", "$2a$10$9HPDDQh2rY6DHDTWTNUup.kxFNfu1FrU2zZ4.2Dg9KuCNA3jibuAe"], ["role", "moderator"]]
|
107
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor39@gmail.com"], ["LIMIT", 1]]
|
108
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 39"], ["age", 85], ["created_at", "2024-06-28 08:00:37.635805"], ["updated_at", "2024-06-28 08:00:37.635805"], ["email", "igor39@gmail.com"], ["encrypted_password", "$2a$10$zb5emNn6Lh8GLNQI5y2hnee5VLaHNm96Kz3MrATbQn0C/al1xnGOy"], ["role", "moderator"]]
|
109
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris40@gmail.com"], ["LIMIT", 1]]
|
110
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 40"], ["age", 33], ["created_at", "2024-06-28 08:00:37.705194"], ["updated_at", "2024-06-28 08:00:37.705194"], ["email", "kris40@gmail.com"], ["encrypted_password", "$2a$10$U06iWhhwTrBPOvwiz7nC7u/Xmt.SuiKhSpZElKhFWIbFaz3bJt7Iq"], ["role", "moderator"]]
|
111
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor41@gmail.com"], ["LIMIT", 1]]
|
112
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 41"], ["age", 58], ["created_at", "2024-06-28 08:00:37.774109"], ["updated_at", "2024-06-28 08:00:37.774109"], ["email", "igor41@gmail.com"], ["encrypted_password", "$2a$10$pvn3zA7tpIZmq7xa0exl3.te3FZIhErWiHfUAld8NfHto831uWQiW"], ["role", "user"]]
|
113
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan42@gmail.com"], ["LIMIT", 1]]
|
114
|
+
[1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 42"], ["age", 17], ["created_at", "2024-06-28 08:00:37.842566"], ["updated_at", "2024-06-28 08:00:37.842566"], ["email", "alan42@gmail.com"], ["encrypted_password", "$2a$10$z7BGzv7sJhbcmql/Iu6c8uhqbv8za9h1.yosBrLxPQlnbSpabNUXK"], ["role", "admin"]]
|
115
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob43@gmail.com"], ["LIMIT", 1]]
|
116
|
+
[1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 43"], ["age", 68], ["created_at", "2024-06-28 08:00:37.910555"], ["updated_at", "2024-06-28 08:00:37.910555"], ["email", "bob43@gmail.com"], ["encrypted_password", "$2a$10$.NYx/ZzxzCWUWH1phKsQaekwOUxwaH/dWqjBvez31g3VQLT.DA4QC"], ["role", "admin"]]
|
117
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob44@gmail.com"], ["LIMIT", 1]]
|
118
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 44"], ["age", 70], ["created_at", "2024-06-28 08:00:37.979234"], ["updated_at", "2024-06-28 08:00:37.979234"], ["email", "bob44@gmail.com"], ["encrypted_password", "$2a$10$t8yYGBeOU9K7EEpsSlJrTO/LG0iz7XTvsCJmuroCFD.EqiW3M1y1O"], ["role", "user"]]
|
119
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris45@gmail.com"], ["LIMIT", 1]]
|
120
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 45"], ["age", 16], ["created_at", "2024-06-28 08:00:38.047778"], ["updated_at", "2024-06-28 08:00:38.047778"], ["email", "kris45@gmail.com"], ["encrypted_password", "$2a$10$Ua74fsXdy34Jwc0reTCEfenXItERgRv2m39XTd286GUCAYJUKtgwK"], ["role", "moderator"]]
|
121
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan46@gmail.com"], ["LIMIT", 1]]
|
122
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 46"], ["age", 67], ["created_at", "2024-06-28 08:00:38.116601"], ["updated_at", "2024-06-28 08:00:38.116601"], ["email", "alan46@gmail.com"], ["encrypted_password", "$2a$10$p4zNXdtEPptynUxwhowvneoHcd8jJFfLIjSxeqz7nCX5XWIvFmCay"], ["role", "admin"]]
|
123
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan47@gmail.com"], ["LIMIT", 1]]
|
124
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 47"], ["age", 53], ["created_at", "2024-06-28 08:00:38.185573"], ["updated_at", "2024-06-28 08:00:38.185573"], ["email", "stan47@gmail.com"], ["encrypted_password", "$2a$10$Yv2VTaKgv5Uz8yNzy2SFyuojhXFZh1YoFG6/ihaNkUzSNd9ObYN52"], ["role", "moderator"]]
|
125
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob48@gmail.com"], ["LIMIT", 1]]
|
126
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 48"], ["age", 9], ["created_at", "2024-06-28 08:00:38.253778"], ["updated_at", "2024-06-28 08:00:38.253778"], ["email", "bob48@gmail.com"], ["encrypted_password", "$2a$10$acJ4UanFew.5GraiEZlN5udWz/NJm3ugamoA7ZbsVaCJhyyVvTlZq"], ["role", "admin"]]
|
127
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan49@gmail.com"], ["LIMIT", 1]]
|
128
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 49"], ["age", 44], ["created_at", "2024-06-28 08:00:38.323755"], ["updated_at", "2024-06-28 08:00:38.323755"], ["email", "alan49@gmail.com"], ["encrypted_password", "$2a$10$ybv7rqJeQnsc.RWYoq00Kur4Rxqr2OHxK6hiVWG32fq.on2UkkbaG"], ["role", "user"]]
|
129
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan50@gmail.com"], ["LIMIT", 1]]
|
130
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 50"], ["age", 37], ["created_at", "2024-06-28 08:00:38.393388"], ["updated_at", "2024-06-28 08:00:38.393388"], ["email", "stan50@gmail.com"], ["encrypted_password", "$2a$10$lRBhWt3.SZrfVjq4FKpyRuEccNU3FADMrrcGbyK7r3kKDqBiZF3mG"], ["role", "admin"]]
|
131
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan51@gmail.com"], ["LIMIT", 1]]
|
132
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 51"], ["age", 58], ["created_at", "2024-06-28 08:00:38.462190"], ["updated_at", "2024-06-28 08:00:38.462190"], ["email", "alan51@gmail.com"], ["encrypted_password", "$2a$10$TWHDkcOoL9N9eVH2HWkQ4u37xtyeDME8umZjZkOjsw.eKYjoxelV2"], ["role", "admin"]]
|
133
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan52@gmail.com"], ["LIMIT", 1]]
|
134
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 52"], ["age", 63], ["created_at", "2024-06-28 08:00:38.531083"], ["updated_at", "2024-06-28 08:00:38.531083"], ["email", "alan52@gmail.com"], ["encrypted_password", "$2a$10$.h1LF8U/EZggXo77ouNgHO3nX9nOhX.K9GVVoCEL6UI5lP8QLq4Xe"], ["role", "moderator"]]
|
135
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan53@gmail.com"], ["LIMIT", 1]]
|
136
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 53"], ["age", 12], ["created_at", "2024-06-28 08:00:38.600315"], ["updated_at", "2024-06-28 08:00:38.600315"], ["email", "stan53@gmail.com"], ["encrypted_password", "$2a$10$9.1//whiwxhMjFNRAfSNs.dFsXedumZGg3YaBSk4D6oV2jtRZfeUO"], ["role", "moderator"]]
|
137
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris54@gmail.com"], ["LIMIT", 1]]
|
138
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 54"], ["age", 46], ["created_at", "2024-06-28 08:00:38.669059"], ["updated_at", "2024-06-28 08:00:38.669059"], ["email", "kris54@gmail.com"], ["encrypted_password", "$2a$10$15t5JcMGa7rOuLEHe4Rt7uqSpidaZJTU1Lupag.fdjGMPpZnzvoCO"], ["role", "admin"]]
|
139
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob55@gmail.com"], ["LIMIT", 1]]
|
140
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 55"], ["age", 0], ["created_at", "2024-06-28 08:00:38.738278"], ["updated_at", "2024-06-28 08:00:38.738278"], ["email", "bob55@gmail.com"], ["encrypted_password", "$2a$10$jRqhBw4FojlYKfqKxLmhCOoqV/cDIK4Rl0Dg.LfiTQ43WMAygviDC"], ["role", "user"]]
|
141
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan56@gmail.com"], ["LIMIT", 1]]
|
142
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 56"], ["age", 14], ["created_at", "2024-06-28 08:00:38.807413"], ["updated_at", "2024-06-28 08:00:38.807413"], ["email", "alan56@gmail.com"], ["encrypted_password", "$2a$10$xB5NDY2UojhPqYJIqk8cd.ZbgamPgKT0oZdWG/fUzafiBx6glEW6W"], ["role", "moderator"]]
|
143
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn57@gmail.com"], ["LIMIT", 1]]
|
144
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 57"], ["age", 63], ["created_at", "2024-06-28 08:00:38.876586"], ["updated_at", "2024-06-28 08:00:38.876586"], ["email", "michaeljohn57@gmail.com"], ["encrypted_password", "$2a$10$Lr1oGVEimSbqRNvxpbeIfe7zsa7yYB.EUCtG9Fo8T89XEHYCOIFZa"], ["role", "admin"]]
|
145
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris58@gmail.com"], ["LIMIT", 1]]
|
146
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 58"], ["age", 46], ["created_at", "2024-06-28 08:00:38.945998"], ["updated_at", "2024-06-28 08:00:38.945998"], ["email", "kris58@gmail.com"], ["encrypted_password", "$2a$10$4X0fj67IdBxxI5.GXQrvJeKN5SC.aEVI/qzhBHRNGQ5KFaRKNQNvG"], ["role", "moderator"]]
|
147
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan59@gmail.com"], ["LIMIT", 1]]
|
148
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 59"], ["age", 64], ["created_at", "2024-06-28 08:00:39.014318"], ["updated_at", "2024-06-28 08:00:39.014318"], ["email", "stan59@gmail.com"], ["encrypted_password", "$2a$10$E8aqC0YIxcshbPs4t7rb7OV1n0JAcY6VKqZYUpLe1arAZkpxtHvw6"], ["role", "moderator"]]
|
149
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor60@gmail.com"], ["LIMIT", 1]]
|
150
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 60"], ["age", 51], ["created_at", "2024-06-28 08:00:39.082635"], ["updated_at", "2024-06-28 08:00:39.082635"], ["email", "igor60@gmail.com"], ["encrypted_password", "$2a$10$9nmcIdEvUI5UNvkn47nvEurt1054zaMlbfslGmvSWdSsmpFz9CLCi"], ["role", "moderator"]]
|
151
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn61@gmail.com"], ["LIMIT", 1]]
|
152
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 61"], ["age", 8], ["created_at", "2024-06-28 08:00:39.150969"], ["updated_at", "2024-06-28 08:00:39.150969"], ["email", "michaeljohn61@gmail.com"], ["encrypted_password", "$2a$10$JLGcqjLM..HkqSS6u1EBwu.jUd03lsdQwuKaVP4HUh5oWU0z04z.y"], ["role", "user"]]
|
153
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob62@gmail.com"], ["LIMIT", 1]]
|
154
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 62"], ["age", 60], ["created_at", "2024-06-28 08:00:39.219153"], ["updated_at", "2024-06-28 08:00:39.219153"], ["email", "bob62@gmail.com"], ["encrypted_password", "$2a$10$KsWuYnLuQd792fAYXKWdA.NzbQuTsp/lzbv14ttvosaM.hIAJyRXy"], ["role", "user"]]
|
155
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn63@gmail.com"], ["LIMIT", 1]]
|
156
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 63"], ["age", 67], ["created_at", "2024-06-28 08:00:39.288155"], ["updated_at", "2024-06-28 08:00:39.288155"], ["email", "michaeljohn63@gmail.com"], ["encrypted_password", "$2a$10$9sOxctjf1oUc1Z3.kPj/lennHhXM4UlwTJurHvCYeVez57NE9Abt2"], ["role", "admin"]]
|
157
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris64@gmail.com"], ["LIMIT", 1]]
|
158
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 64"], ["age", 89], ["created_at", "2024-06-28 08:00:39.357179"], ["updated_at", "2024-06-28 08:00:39.357179"], ["email", "kris64@gmail.com"], ["encrypted_password", "$2a$10$fTYL1O4yCuaMzSU8JxNyduV6m6GilVIOyjLrBQigfFPaHoJPdCuQ."], ["role", "admin"]]
|
159
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan65@gmail.com"], ["LIMIT", 1]]
|
160
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 65"], ["age", 22], ["created_at", "2024-06-28 08:00:39.425915"], ["updated_at", "2024-06-28 08:00:39.425915"], ["email", "stan65@gmail.com"], ["encrypted_password", "$2a$10$OThMHy8x5mPPDC9bAm6ZRe1l4AygDnteMQgzS9E3vK0fTKcvmu1EW"], ["role", "user"]]
|
161
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan66@gmail.com"], ["LIMIT", 1]]
|
162
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 66"], ["age", 72], ["created_at", "2024-06-28 08:00:39.494602"], ["updated_at", "2024-06-28 08:00:39.494602"], ["email", "alan66@gmail.com"], ["encrypted_password", "$2a$10$CYaYMqPFqFNEo5brfbDstO4KL9DYkTvXnj5uGlpTeA2iDdofHbOF6"], ["role", "user"]]
|
163
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob67@gmail.com"], ["LIMIT", 1]]
|
164
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 67"], ["age", 84], ["created_at", "2024-06-28 08:00:39.563049"], ["updated_at", "2024-06-28 08:00:39.563049"], ["email", "bob67@gmail.com"], ["encrypted_password", "$2a$10$gLQqUJ8NyAo/YEmc9ZnhyOx0V2IT00YkImwCYxmo0dlQKuT81r/Fi"], ["role", "moderator"]]
|
165
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris68@gmail.com"], ["LIMIT", 1]]
|
166
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 68"], ["age", 49], ["created_at", "2024-06-28 08:00:39.632214"], ["updated_at", "2024-06-28 08:00:39.632214"], ["email", "kris68@gmail.com"], ["encrypted_password", "$2a$10$5xUftCVsv6ZDfHXwDV4RmefJpXI2/jlkdTb9ukLnvrPsQakDu4Z/S"], ["role", "user"]]
|
167
|
+
[1m[36mUser Exists? (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan69@gmail.com"], ["LIMIT", 1]]
|
168
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 69"], ["age", 67], ["created_at", "2024-06-28 08:00:39.707095"], ["updated_at", "2024-06-28 08:00:39.707095"], ["email", "stan69@gmail.com"], ["encrypted_password", "$2a$10$.SxCRuhwj3ikPYCWeGWe0OCYwMiYbe9Q9pU4rUGgzw.PQSyUlaNza"], ["role", "moderator"]]
|
169
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan70@gmail.com"], ["LIMIT", 1]]
|
170
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 70"], ["age", 13], ["created_at", "2024-06-28 08:00:39.780357"], ["updated_at", "2024-06-28 08:00:39.780357"], ["email", "alan70@gmail.com"], ["encrypted_password", "$2a$10$RkrCB1YlB4iC1wgCLyJBwuj5ffKta3n1S9udTaZEXE8B4IVNTq14K"], ["role", "user"]]
|
171
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn71@gmail.com"], ["LIMIT", 1]]
|
172
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 71"], ["age", 37], ["created_at", "2024-06-28 08:00:39.850609"], ["updated_at", "2024-06-28 08:00:39.850609"], ["email", "michaeljohn71@gmail.com"], ["encrypted_password", "$2a$10$dkmNDiFNAVC.LswIjaaKC.iQ2HSsyNMuRKPvXwco9h3TNcVH7oIui"], ["role", "user"]]
|
173
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan72@gmail.com"], ["LIMIT", 1]]
|
174
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 72"], ["age", 79], ["created_at", "2024-06-28 08:00:39.920355"], ["updated_at", "2024-06-28 08:00:39.920355"], ["email", "alan72@gmail.com"], ["encrypted_password", "$2a$10$sFXa6h9k/ym31m/zZ9Khq.pceyP58W4824bFYujlG/1DTYZHcPt46"], ["role", "user"]]
|
175
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn73@gmail.com"], ["LIMIT", 1]]
|
176
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 73"], ["age", 86], ["created_at", "2024-06-28 08:00:39.988582"], ["updated_at", "2024-06-28 08:00:39.988582"], ["email", "michaeljohn73@gmail.com"], ["encrypted_password", "$2a$10$zjZxrT0OM/fqivnFkS613umUmTWjoNklbW8Eu1eAeT92r.JpHfOc6"], ["role", "moderator"]]
|
177
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan74@gmail.com"], ["LIMIT", 1]]
|
178
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 74"], ["age", 4], ["created_at", "2024-06-28 08:00:40.058128"], ["updated_at", "2024-06-28 08:00:40.058128"], ["email", "alan74@gmail.com"], ["encrypted_password", "$2a$10$k/GUWEqymJq9/p4qzy8RH.RFaHmU/ajwxhtv5Eo/RIKRmwBDAu.Za"], ["role", "user"]]
|
179
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn75@gmail.com"], ["LIMIT", 1]]
|
180
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 75"], ["age", 42], ["created_at", "2024-06-28 08:00:40.126494"], ["updated_at", "2024-06-28 08:00:40.126494"], ["email", "michaeljohn75@gmail.com"], ["encrypted_password", "$2a$10$bloQREMY9t9DJc61L0JZsuYrTIDrLahOW2a6ocP14Cvy6LqAejNqG"], ["role", "user"]]
|
181
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn76@gmail.com"], ["LIMIT", 1]]
|
182
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 76"], ["age", 44], ["created_at", "2024-06-28 08:00:40.195115"], ["updated_at", "2024-06-28 08:00:40.195115"], ["email", "michaeljohn76@gmail.com"], ["encrypted_password", "$2a$10$8hFqTc5jUZpgl7Z0.iRjcOT/yCD4aXq./bbSvShE5c1r.BKcWW4.q"], ["role", "admin"]]
|
183
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn77@gmail.com"], ["LIMIT", 1]]
|
184
|
+
[1m[36mUser Create (0.2ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 77"], ["age", 4], ["created_at", "2024-06-28 08:00:40.302030"], ["updated_at", "2024-06-28 08:00:40.302030"], ["email", "michaeljohn77@gmail.com"], ["encrypted_password", "$2a$10$90Z4cILWTSjrQimd7jx4LeqFphOAlmMXoMoazRmMWQY/svJE40AbG"], ["role", "admin"]]
|
185
|
+
[1m[36mUser Exists? (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn78@gmail.com"], ["LIMIT", 1]]
|
186
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 78"], ["age", 67], ["created_at", "2024-06-28 08:00:40.391304"], ["updated_at", "2024-06-28 08:00:40.391304"], ["email", "michaeljohn78@gmail.com"], ["encrypted_password", "$2a$10$v.zYI3Di8FJZqQDn2Uohyuy0AyOoEhOWw.6aSAyqsdhmipb3et85K"], ["role", "moderator"]]
|
187
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan79@gmail.com"], ["LIMIT", 1]]
|
188
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 79"], ["age", 43], ["created_at", "2024-06-28 08:00:40.460835"], ["updated_at", "2024-06-28 08:00:40.460835"], ["email", "alan79@gmail.com"], ["encrypted_password", "$2a$10$aBhoW5C/TsnD8LLod4.70OXYNv1.0ynrI.m8Sfws3a77eBmiQeejS"], ["role", "moderator"]]
|
189
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn80@gmail.com"], ["LIMIT", 1]]
|
190
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 80"], ["age", 93], ["created_at", "2024-06-28 08:00:40.529069"], ["updated_at", "2024-06-28 08:00:40.529069"], ["email", "michaeljohn80@gmail.com"], ["encrypted_password", "$2a$10$4dLDZ8Qi7TXH8d6rPnsmq.fLT9r2kZlXX6I72unev0zfa2gRHazP."], ["role", "moderator"]]
|
191
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob81@gmail.com"], ["LIMIT", 1]]
|
192
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 81"], ["age", 77], ["created_at", "2024-06-28 08:00:40.597471"], ["updated_at", "2024-06-28 08:00:40.597471"], ["email", "bob81@gmail.com"], ["encrypted_password", "$2a$10$jQ6tz2qV1bi4IujM5B19XuwHQUkerBzaO9cMxrUDk1XuieHFvOes6"], ["role", "admin"]]
|
193
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob82@gmail.com"], ["LIMIT", 1]]
|
194
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 82"], ["age", 79], ["created_at", "2024-06-28 08:00:40.666424"], ["updated_at", "2024-06-28 08:00:40.666424"], ["email", "bob82@gmail.com"], ["encrypted_password", "$2a$10$D//ha5mcWn7SglKJbMkNYO7awkRT3ZwayO11l/BZQhqKzFX9k6l5a"], ["role", "admin"]]
|
195
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor83@gmail.com"], ["LIMIT", 1]]
|
196
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 83"], ["age", 70], ["created_at", "2024-06-28 08:00:40.738657"], ["updated_at", "2024-06-28 08:00:40.738657"], ["email", "igor83@gmail.com"], ["encrypted_password", "$2a$10$ET2qk75qvCqvNIlPewHdoOXCLE8FXMCeAfkylJuHVLUPIH4okAA36"], ["role", "user"]]
|
197
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor84@gmail.com"], ["LIMIT", 1]]
|
198
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 84"], ["age", 48], ["created_at", "2024-06-28 08:00:40.820268"], ["updated_at", "2024-06-28 08:00:40.820268"], ["email", "igor84@gmail.com"], ["encrypted_password", "$2a$10$9PyQYPA1PZXk9Nfetb8HzOKHdreDJU8.kOvwq5fP1jUMbnzSJPW9G"], ["role", "admin"]]
|
199
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn85@gmail.com"], ["LIMIT", 1]]
|
200
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 85"], ["age", 27], ["created_at", "2024-06-28 08:00:40.899500"], ["updated_at", "2024-06-28 08:00:40.899500"], ["email", "michaeljohn85@gmail.com"], ["encrypted_password", "$2a$10$W82QQR7xpDwVFnsTspTu/OcwRI1jcAFD0pt61fIrkpF5NISvvqhT6"], ["role", "moderator"]]
|
201
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris86@gmail.com"], ["LIMIT", 1]]
|
202
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "MichaelJohn 86"], ["age", 14], ["created_at", "2024-06-28 08:00:40.971228"], ["updated_at", "2024-06-28 08:00:40.971228"], ["email", "kris86@gmail.com"], ["encrypted_password", "$2a$10$wqCCFkvXC8T3BN0s41nYJuXpreqXuUqWXifmw3Jh/awHYQgR3da1W"], ["role", "moderator"]]
|
203
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan87@gmail.com"], ["LIMIT", 1]]
|
204
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 87"], ["age", 55], ["created_at", "2024-06-28 08:00:41.042868"], ["updated_at", "2024-06-28 08:00:41.042868"], ["email", "alan87@gmail.com"], ["encrypted_password", "$2a$10$FdLY0s6Tuigb36Se5eGqbeOklkXFtHfhB.Q4HVXAwKfFWjSi4w5Fe"], ["role", "moderator"]]
|
205
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris88@gmail.com"], ["LIMIT", 1]]
|
206
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 88"], ["age", 98], ["created_at", "2024-06-28 08:00:41.118259"], ["updated_at", "2024-06-28 08:00:41.118259"], ["email", "kris88@gmail.com"], ["encrypted_password", "$2a$10$JQM0V2N3PFl.vY/wWSJ9AuGtdvn5Wt5w6hO4XzLXxQ.rjH1OZSpDy"], ["role", "moderator"]]
|
207
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob89@gmail.com"], ["LIMIT", 1]]
|
208
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Bob 89"], ["age", 30], ["created_at", "2024-06-28 08:00:41.195730"], ["updated_at", "2024-06-28 08:00:41.195730"], ["email", "bob89@gmail.com"], ["encrypted_password", "$2a$10$TnQzEOscwJ.4vUfLy3knuuEumnmXMqo3lWEcrqPM2iRGB4bhIUSki"], ["role", "moderator"]]
|
209
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor90@gmail.com"], ["LIMIT", 1]]
|
210
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 90"], ["age", 64], ["created_at", "2024-06-28 08:00:41.273734"], ["updated_at", "2024-06-28 08:00:41.273734"], ["email", "igor90@gmail.com"], ["encrypted_password", "$2a$10$R6wBCCoVSib3HMSJ8fY/gO9v1u2dYnOIef/ienMbkNZDIFKNJuHZS"], ["role", "user"]]
|
211
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "bob91@gmail.com"], ["LIMIT", 1]]
|
212
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 91"], ["age", 95], ["created_at", "2024-06-28 08:00:41.350900"], ["updated_at", "2024-06-28 08:00:41.350900"], ["email", "bob91@gmail.com"], ["encrypted_password", "$2a$10$iV5QLm.kWxKe4h2JRJMswO8BnF7ctLDa9a/xOjDdM87r./ncM1ziy"], ["role", "user"]]
|
213
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "igor92@gmail.com"], ["LIMIT", 1]]
|
214
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 92"], ["age", 22], ["created_at", "2024-06-28 08:00:41.426468"], ["updated_at", "2024-06-28 08:00:41.426468"], ["email", "igor92@gmail.com"], ["encrypted_password", "$2a$10$rFor8v8zYAGCaN249rXE9.zF3ivgbU/qyH5uRCsnWhg5.aOHH3vJ2"], ["role", "admin"]]
|
215
|
+
[1m[36mUser Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan93@gmail.com"], ["LIMIT", 1]]
|
216
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 93"], ["age", 29], ["created_at", "2024-06-28 08:00:41.500828"], ["updated_at", "2024-06-28 08:00:41.500828"], ["email", "alan93@gmail.com"], ["encrypted_password", "$2a$10$T4CjYh7uqELqgkFdEpiwEeNEpSDTjM32Y1v882SRnVHqv1KOOafDK"], ["role", "moderator"]]
|
217
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan94@gmail.com"], ["LIMIT", 1]]
|
218
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Igor 94"], ["age", 15], ["created_at", "2024-06-28 08:00:41.580820"], ["updated_at", "2024-06-28 08:00:41.580820"], ["email", "alan94@gmail.com"], ["encrypted_password", "$2a$10$Q8lquxL.V0c31i.LwPQqXeNwsn3bCJzx9fw/AXoprxr.WxXBeFR5G"], ["role", "moderator"]]
|
219
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "alan95@gmail.com"], ["LIMIT", 1]]
|
220
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 95"], ["age", 83], ["created_at", "2024-06-28 08:00:41.653376"], ["updated_at", "2024-06-28 08:00:41.653376"], ["email", "alan95@gmail.com"], ["encrypted_password", "$2a$10$ZBFs4rs.cPT.JbBGOzg/9.F15ht4yuWTTKxefevuuE1B9l3DHzVbq"], ["role", "moderator"]]
|
221
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "kris96@gmail.com"], ["LIMIT", 1]]
|
222
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 96"], ["age", 36], ["created_at", "2024-06-28 08:00:41.728716"], ["updated_at", "2024-06-28 08:00:41.728716"], ["email", "kris96@gmail.com"], ["encrypted_password", "$2a$10$zpOnazGJOwzHHwYdTLuY.u7STNqj2tWIu7Hwtfyf4UZ9iQ9ZcSMJe"], ["role", "user"]]
|
223
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "michaeljohn97@gmail.com"], ["LIMIT", 1]]
|
224
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Alan 97"], ["age", 2], ["created_at", "2024-06-28 08:00:41.802163"], ["updated_at", "2024-06-28 08:00:41.802163"], ["email", "michaeljohn97@gmail.com"], ["encrypted_password", "$2a$10$W57s8O3vM5yAIT67SQ.v1uxqN0ecWlchCLEIqIwqSGeR7IAmS17Zu"], ["role", "user"]]
|
225
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan98@gmail.com"], ["LIMIT", 1]]
|
226
|
+
[1m[36mUser Create (0.3ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Stan 98"], ["age", 59], ["created_at", "2024-06-28 08:00:41.882275"], ["updated_at", "2024-06-28 08:00:41.882275"], ["email", "stan98@gmail.com"], ["encrypted_password", "$2a$10$O10daFQISsG9gxmt/GP2LehUVFEXu5byzuX/eks1kKQRIj3ZZuT4W"], ["role", "user"]]
|
227
|
+
[1m[36mUser Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ?[0m [["email", "stan99@gmail.com"], ["LIMIT", 1]]
|
228
|
+
[1m[36mUser Create (0.1ms)[0m [1m[32mINSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "role") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["name", "Kris 99"], ["age", 84], ["created_at", "2024-06-28 08:00:41.960918"], ["updated_at", "2024-06-28 08:00:41.960918"], ["email", "stan99@gmail.com"], ["encrypted_password", "$2a$10$G.AADvOVm4wNcIJs7DasceVaH.V/9aq1ErWs8/MrSLijtV51sFhXS"], ["role", "admin"]]
|
229
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150909210357"]]
|
230
|
+
[1m[36mTRANSACTION (1.5ms)[0m [1m[36mcommit transaction[0m
|
231
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
232
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
233
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2024-06-28 08:00:41.974258"], ["updated_at", "2024-06-28 08:00:41.974258"]]
|
234
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
235
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
236
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
237
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
238
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
239
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
240
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
241
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
242
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
243
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
244
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
245
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
246
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
247
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
248
|
+
[1m[36mActiveRecord::SchemaMigration Pluck (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
249
|
+
[1m[36mActiveRecord::InternalMetadata Pluck (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
250
|
+
[1m[36mActiveRecord::SchemaMigration Pluck (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
251
|
+
[1m[36mActiveRecord::InternalMetadata Pluck (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
252
|
+
[1m[36mActiveRecord::SchemaMigration Pluck (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
253
|
+
[1m[36mActiveRecord::InternalMetadata Pluck (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
254
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
255
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
256
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "users"[0m
|
257
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "age" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime(6), "remember_created_at" datetime(6), "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime(6), "last_sign_in_at" datetime(6), "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "role" varchar)[0m
|
258
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
259
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")[0m
|
260
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
261
|
+
[1m[36mActiveRecord::SchemaMigration Pluck (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
262
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20150909210357)[0m
|
263
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
|
264
|
+
(20150907190739),
|
265
|
+
(20150907190846);
|
266
|
+
|
267
|
+
[0m
|
268
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)[0m
|
269
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
270
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
271
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", "2024-06-28 08:09:27.915978"], ["updated_at", "2024-06-28 08:09:27.915978"]]
|
272
|
+
[1m[36mTRANSACTION (0.9ms)[0m [1m[36mcommit transaction[0m
|
273
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
274
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[36mbegin transaction[0m
|
275
|
+
[1m[36mActiveRecord::InternalMetadata Update (0.3ms)[0m [1m[33mUPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ?[0m [["value", "test"], ["updated_at", "2024-06-28 08:09:27.922037"], ["key", "environment"]]
|
276
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
277
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
278
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[36mbegin transaction[0m
|
279
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "schema_sha1"], ["value", "deca11fedd8447e578f191d76c44fededdb411bf"], ["created_at", "2024-06-28 08:09:27.927070"], ["updated_at", "2024-06-28 08:09:27.927070"]]
|
280
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
281
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
282
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
283
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
284
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
285
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
286
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:05 +0300
|
287
|
+
[1m[35m (1.6ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
288
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
289
|
+
Processing by HomeController#index as HTML
|
290
|
+
Rendering layout layouts/application.html.erb
|
291
|
+
Rendering home/index.html.erb within layouts/application
|
292
|
+
Rendered home/index.html.erb within layouts/application (Duration: 6.1ms | Allocations: 1116)
|
293
|
+
Rendered shared/_header.html.erb (Duration: 0.6ms | Allocations: 115)
|
294
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.6ms | Allocations: 120)
|
295
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.5ms | Allocations: 172)
|
296
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.6ms | Allocations: 134)
|
297
|
+
[1m[36mUser Load (0.7ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
298
|
+
↳ app/views/shared/_footer.html.erb:14
|
299
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 41.3ms | Allocations: 12938)
|
300
|
+
Rendered shared/_footer.html.erb (Duration: 43.3ms | Allocations: 13829)
|
301
|
+
Rendered layout layouts/application.html.erb (Duration: 52.4ms | Allocations: 15996)
|
302
|
+
Completed 200 OK in 66ms (Views: 56.3ms | ActiveRecord: 1.2ms | Allocations: 19697)
|
303
|
+
|
304
|
+
|
305
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:09 +0300
|
306
|
+
Processing by HomeController#index as HTML
|
307
|
+
Rendering layout layouts/application.html.erb
|
308
|
+
Rendering home/index.html.erb within layouts/application
|
309
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 557)
|
310
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
311
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
312
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
313
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
314
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
315
|
+
↳ app/views/shared/_footer.html.erb:14
|
316
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.4ms | Allocations: 1768)
|
317
|
+
Rendered shared/_footer.html.erb (Duration: 2.7ms | Allocations: 1930)
|
318
|
+
Rendered layout layouts/application.html.erb (Duration: 3.7ms | Allocations: 2795)
|
319
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 3114)
|
320
|
+
|
321
|
+
|
322
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:32:11 +0300
|
323
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
324
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"10", "id"=>""}
|
325
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
326
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
327
|
+
[1m[36mUser Update (0.4ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ?, "last_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_ip" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:32:11.659565"], ["sign_in_count", 1], ["current_sign_in_at", "2024-06-28 08:32:11.659089"], ["last_sign_in_at", "2024-06-28 08:32:11.659089"], ["current_sign_in_ip", "::1"], ["last_sign_in_ip", "::1"], ["id", 10]]
|
328
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
329
|
+
Redirected to http://localhost:3000/
|
330
|
+
Completed 302 Found in 12ms (ActiveRecord: 1.4ms | Allocations: 6961)
|
331
|
+
|
332
|
+
|
333
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:11 +0300
|
334
|
+
Processing by HomeController#index as HTML
|
335
|
+
Rendering layout layouts/application.html.erb
|
336
|
+
Rendering home/index.html.erb within layouts/application
|
337
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.6ms | Allocations: 567)
|
338
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
|
339
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
340
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
341
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
342
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
343
|
+
↳ app/views/shared/_footer.html.erb:14
|
344
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
345
|
+
↳ app/views/shared/_footer.html.erb:14
|
346
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 5.1ms | Allocations: 2948)
|
347
|
+
Rendered shared/_footer.html.erb (Duration: 5.3ms | Allocations: 3110)
|
348
|
+
Rendered layout layouts/application.html.erb (Duration: 6.6ms | Allocations: 4005)
|
349
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.3ms | Allocations: 4335)
|
350
|
+
|
351
|
+
|
352
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:18 +0300
|
353
|
+
Processing by HomeController#index as HTML
|
354
|
+
Rendering layout layouts/application.html.erb
|
355
|
+
Rendering home/index.html.erb within layouts/application
|
356
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 534)
|
357
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
358
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
359
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
360
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
361
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
362
|
+
↳ app/views/shared/_footer.html.erb:14
|
363
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
364
|
+
↳ app/views/shared/_footer.html.erb:14
|
365
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.6ms | Allocations: 2684)
|
366
|
+
Rendered shared/_footer.html.erb (Duration: 3.9ms | Allocations: 2843)
|
367
|
+
Rendered layout layouts/application.html.erb (Duration: 5.1ms | Allocations: 3682)
|
368
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 3964)
|
369
|
+
|
370
|
+
|
371
|
+
Started GET "/about" for ::1 at 2024-06-28 11:32:20 +0300
|
372
|
+
Processing by HomeController#about as HTML
|
373
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
374
|
+
Rendering layout layouts/application.html.erb
|
375
|
+
Rendering home/about.html.erb within layouts/application
|
376
|
+
Rendered home/about.html.erb within layouts/application (Duration: 0.5ms | Allocations: 101)
|
377
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
|
378
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
379
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
380
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
381
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
382
|
+
↳ app/views/shared/_footer.html.erb:14
|
383
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
384
|
+
↳ app/views/shared/_footer.html.erb:14
|
385
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 4.8ms | Allocations: 2749)
|
386
|
+
Rendered shared/_footer.html.erb (Duration: 5.2ms | Allocations: 2935)
|
387
|
+
Rendered layout layouts/application.html.erb (Duration: 6.3ms | Allocations: 3375)
|
388
|
+
Completed 200 OK in 13ms (Views: 6.3ms | ActiveRecord: 0.6ms | Allocations: 6584)
|
389
|
+
|
390
|
+
|
391
|
+
Started GET "/about" for ::1 at 2024-06-28 11:32:22 +0300
|
392
|
+
Processing by HomeController#about as HTML
|
393
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
394
|
+
Rendering layout layouts/application.html.erb
|
395
|
+
Rendering home/about.html.erb within layouts/application
|
396
|
+
Rendered home/about.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
397
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
398
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
399
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
400
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
401
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
402
|
+
↳ app/views/shared/_footer.html.erb:14
|
403
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
404
|
+
↳ app/views/shared/_footer.html.erb:14
|
405
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.8ms | Allocations: 2683)
|
406
|
+
Rendered shared/_footer.html.erb (Duration: 4.1ms | Allocations: 2850)
|
407
|
+
Rendered layout layouts/application.html.erb (Duration: 4.6ms | Allocations: 3160)
|
408
|
+
Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 0.3ms | Allocations: 4970)
|
409
|
+
|
410
|
+
|
411
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:23 +0300
|
412
|
+
Processing by HomeController#index as HTML
|
413
|
+
Rendering layout layouts/application.html.erb
|
414
|
+
Rendering home/index.html.erb within layouts/application
|
415
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 507)
|
416
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
417
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
418
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
419
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
420
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
421
|
+
↳ app/views/shared/_footer.html.erb:14
|
422
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
423
|
+
↳ app/views/shared/_footer.html.erb:14
|
424
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.7ms | Allocations: 2684)
|
425
|
+
Rendered shared/_footer.html.erb (Duration: 4.0ms | Allocations: 2843)
|
426
|
+
Rendered layout layouts/application.html.erb (Duration: 4.9ms | Allocations: 3655)
|
427
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 3937)
|
428
|
+
|
429
|
+
|
430
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:24 +0300
|
431
|
+
Processing by HomeController#index as HTML
|
432
|
+
Rendering layout layouts/application.html.erb
|
433
|
+
Rendering home/index.html.erb within layouts/application
|
434
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 495)
|
435
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
436
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
437
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
438
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
439
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
440
|
+
↳ app/views/shared/_footer.html.erb:14
|
441
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
442
|
+
↳ app/views/shared/_footer.html.erb:14
|
443
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 5.0ms | Allocations: 2684)
|
444
|
+
Rendered shared/_footer.html.erb (Duration: 5.3ms | Allocations: 2843)
|
445
|
+
Rendered layout layouts/application.html.erb (Duration: 6.9ms | Allocations: 3643)
|
446
|
+
Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.3ms | Allocations: 3925)
|
447
|
+
|
448
|
+
|
449
|
+
Started GET "/users/sign_in" for ::1 at 2024-06-28 11:32:25 +0300
|
450
|
+
Processing by Devise::SessionsController#new as HTML
|
451
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
452
|
+
Redirected to http://localhost:3000/
|
453
|
+
Filter chain halted as :require_no_authentication rendered or redirected
|
454
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.1ms | Allocations: 5046)
|
455
|
+
|
456
|
+
|
457
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:25 +0300
|
458
|
+
Processing by HomeController#index as HTML
|
459
|
+
Rendering layout layouts/application.html.erb
|
460
|
+
Rendering home/index.html.erb within layouts/application
|
461
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 579)
|
462
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
|
463
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
464
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
465
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
466
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
467
|
+
↳ app/views/shared/_footer.html.erb:14
|
468
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
469
|
+
↳ app/views/shared/_footer.html.erb:14
|
470
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.6ms | Allocations: 2738)
|
471
|
+
Rendered shared/_footer.html.erb (Duration: 3.8ms | Allocations: 2899)
|
472
|
+
Rendered layout layouts/application.html.erb (Duration: 4.8ms | Allocations: 3799)
|
473
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 4131)
|
474
|
+
|
475
|
+
|
476
|
+
Started GET "/about" for ::1 at 2024-06-28 11:32:35 +0300
|
477
|
+
Processing by HomeController#about as HTML
|
478
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
479
|
+
Rendering layout layouts/application.html.erb
|
480
|
+
Rendering home/about.html.erb within layouts/application
|
481
|
+
Rendered home/about.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
482
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
483
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
484
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
485
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
486
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
487
|
+
↳ app/views/shared/_footer.html.erb:14
|
488
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
489
|
+
↳ app/views/shared/_footer.html.erb:14
|
490
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.4ms | Allocations: 2683)
|
491
|
+
Rendered shared/_footer.html.erb (Duration: 3.7ms | Allocations: 2850)
|
492
|
+
Rendered layout layouts/application.html.erb (Duration: 4.6ms | Allocations: 3160)
|
493
|
+
Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.3ms | Allocations: 4961)
|
494
|
+
|
495
|
+
|
496
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:36 +0300
|
497
|
+
Processing by HomeController#index as HTML
|
498
|
+
Rendering layout layouts/application.html.erb
|
499
|
+
Rendering home/index.html.erb within layouts/application
|
500
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 531)
|
501
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
502
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
503
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
504
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
505
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
506
|
+
↳ app/views/shared/_footer.html.erb:14
|
507
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
508
|
+
↳ app/views/shared/_footer.html.erb:14
|
509
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.9ms | Allocations: 2684)
|
510
|
+
Rendered shared/_footer.html.erb (Duration: 4.2ms | Allocations: 2843)
|
511
|
+
Rendered layout layouts/application.html.erb (Duration: 5.5ms | Allocations: 3679)
|
512
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms | Allocations: 3962)
|
513
|
+
|
514
|
+
|
515
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:32:40 +0300
|
516
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
517
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"8", "id"=>"", "back_to_previous_id"=>""}
|
518
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
|
519
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
520
|
+
[1m[36mUser Update (2.6ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ?, "last_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_ip" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:32:40.469915"], ["sign_in_count", 1], ["current_sign_in_at", "2024-06-28 08:32:40.469678"], ["last_sign_in_at", "2024-06-28 08:32:40.469678"], ["current_sign_in_ip", "::1"], ["last_sign_in_ip", "::1"], ["id", 8]]
|
521
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
522
|
+
Redirected to http://localhost:3000/
|
523
|
+
Completed 302 Found in 12ms (ActiveRecord: 3.6ms | Allocations: 5015)
|
524
|
+
|
525
|
+
|
526
|
+
Started GET "/" for ::1 at 2024-06-28 11:32:40 +0300
|
527
|
+
Processing by HomeController#index as HTML
|
528
|
+
Rendering layout layouts/application.html.erb
|
529
|
+
Rendering home/index.html.erb within layouts/application
|
530
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 498)
|
531
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
532
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
533
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
534
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
535
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
536
|
+
↳ app/views/shared/_footer.html.erb:14
|
537
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
|
538
|
+
↳ app/views/shared/_footer.html.erb:14
|
539
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
540
|
+
↳ app/views/shared/_footer.html.erb:14
|
541
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 6.2ms | Allocations: 3509)
|
542
|
+
Rendered shared/_footer.html.erb (Duration: 6.8ms | Allocations: 3668)
|
543
|
+
Rendered layout layouts/application.html.erb (Duration: 7.8ms | Allocations: 4478)
|
544
|
+
Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.4ms | Allocations: 4760)
|
545
|
+
|
546
|
+
|
547
|
+
Started GET "/" for ::1 at 2024-06-28 11:34:40 +0300
|
548
|
+
Processing by HomeController#index as HTML
|
549
|
+
Rendering layout layouts/application.html.erb
|
550
|
+
Rendering home/index.html.erb within layouts/application
|
551
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 610)
|
552
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 9)
|
553
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 6)
|
554
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 6)
|
555
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 9)
|
556
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
557
|
+
↳ app/views/shared/_footer.html.erb:14
|
558
|
+
[1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
559
|
+
↳ app/views/shared/_footer.html.erb:14
|
560
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
|
561
|
+
↳ app/views/shared/_footer.html.erb:14
|
562
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
563
|
+
↳ app/views/shared/_footer.html.erb:14
|
564
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 26.8ms | Allocations: 12498)
|
565
|
+
Rendered shared/_footer.html.erb (Duration: 27.2ms | Allocations: 12695)
|
566
|
+
Rendered layout layouts/application.html.erb (Duration: 28.4ms | Allocations: 13661)
|
567
|
+
Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 1.8ms | Allocations: 14335)
|
568
|
+
|
569
|
+
|
570
|
+
Started GET "/" for ::1 at 2024-06-28 11:39:05 +0300
|
571
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
572
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
573
|
+
Processing by HomeController#index as HTML
|
574
|
+
Rendering layout layouts/application.html.erb
|
575
|
+
Rendering home/index.html.erb within layouts/application
|
576
|
+
Rendered home/index.html.erb within layouts/application (Duration: 9.1ms | Allocations: 1568)
|
577
|
+
Rendered shared/_header.html.erb (Duration: 1.0ms | Allocations: 115)
|
578
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.4ms | Allocations: 120)
|
579
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.5ms | Allocations: 172)
|
580
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.6ms | Allocations: 134)
|
581
|
+
[1m[36mUser Load (1.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
582
|
+
↳ app/views/shared/_footer.html.erb:14
|
583
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
|
584
|
+
↳ app/views/shared/_footer.html.erb:14
|
585
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
586
|
+
↳ app/views/shared/_footer.html.erb:14
|
587
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 28.5ms | Allocations: 15704)
|
588
|
+
Rendered shared/_footer.html.erb (Duration: 30.6ms | Allocations: 16614)
|
589
|
+
Rendered layout layouts/application.html.erb (Duration: 43.4ms | Allocations: 19207)
|
590
|
+
Completed 200 OK in 74ms (Views: 47.4ms | ActiveRecord: 2.0ms | Allocations: 22946)
|
591
|
+
|
592
|
+
|
593
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:39:08 +0300
|
594
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
595
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"7", "back_to_previous_id"=>""}
|
596
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
|
597
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[36mbegin transaction[0m
|
598
|
+
[1m[36mUser Update (0.4ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ?, "last_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_ip" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:39:08.622636"], ["sign_in_count", 1], ["current_sign_in_at", "2024-06-28 08:39:08.622202"], ["last_sign_in_at", "2024-06-28 08:39:08.622202"], ["current_sign_in_ip", "::1"], ["last_sign_in_ip", "::1"], ["id", 7]]
|
599
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
600
|
+
Redirected to http://localhost:3000/
|
601
|
+
Completed 302 Found in 10ms (ActiveRecord: 1.4ms | Allocations: 6660)
|
602
|
+
|
603
|
+
|
604
|
+
Started GET "/" for ::1 at 2024-06-28 11:39:08 +0300
|
605
|
+
Processing by HomeController#index as HTML
|
606
|
+
Rendering layout layouts/application.html.erb
|
607
|
+
Rendering home/index.html.erb within layouts/application
|
608
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.8ms | Allocations: 759)
|
609
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
|
610
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
611
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
612
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
613
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
614
|
+
↳ app/views/shared/_footer.html.erb:14
|
615
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
|
616
|
+
↳ app/views/shared/_footer.html.erb:14
|
617
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
|
618
|
+
↳ app/views/shared/_footer.html.erb:14
|
619
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
620
|
+
↳ app/views/shared/_footer.html.erb:14
|
621
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 7.1ms | Allocations: 4401)
|
622
|
+
Rendered shared/_footer.html.erb (Duration: 7.5ms | Allocations: 4563)
|
623
|
+
Rendered layout layouts/application.html.erb (Duration: 9.0ms | Allocations: 5650)
|
624
|
+
Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.5ms | Allocations: 5972)
|
625
|
+
|
626
|
+
|
627
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:39:12 +0300
|
628
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
629
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"3", "id"=>"", "back_to_previous_id"=>""}
|
630
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
631
|
+
[1m[36mTRANSACTION (0.0ms)[0m [1m[36mbegin transaction[0m
|
632
|
+
[1m[36mUser Update (0.4ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ?, "last_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_ip" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:39:12.170557"], ["sign_in_count", 1], ["current_sign_in_at", "2024-06-28 08:39:12.170405"], ["last_sign_in_at", "2024-06-28 08:39:12.170405"], ["current_sign_in_ip", "::1"], ["last_sign_in_ip", "::1"], ["id", 3]]
|
633
|
+
[1m[36mTRANSACTION (1.3ms)[0m [1m[36mcommit transaction[0m
|
634
|
+
Redirected to http://localhost:3000/
|
635
|
+
Completed 302 Found in 9ms (ActiveRecord: 1.9ms | Allocations: 5137)
|
636
|
+
|
637
|
+
|
638
|
+
Started GET "/" for ::1 at 2024-06-28 11:39:12 +0300
|
639
|
+
Processing by HomeController#index as HTML
|
640
|
+
Rendering layout layouts/application.html.erb
|
641
|
+
Rendering home/index.html.erb within layouts/application
|
642
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 749)
|
643
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
644
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
645
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
646
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
647
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
648
|
+
↳ app/views/shared/_footer.html.erb:14
|
649
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
650
|
+
↳ app/views/shared/_footer.html.erb:14
|
651
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 7], ["LIMIT", 1]]
|
652
|
+
↳ app/views/shared/_footer.html.erb:14
|
653
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 8], ["LIMIT", 1]]
|
654
|
+
↳ app/views/shared/_footer.html.erb:14
|
655
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 10], ["LIMIT", 1]]
|
656
|
+
↳ app/views/shared/_footer.html.erb:14
|
657
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 9.1ms | Allocations: 5160)
|
658
|
+
Rendered shared/_footer.html.erb (Duration: 9.4ms | Allocations: 5319)
|
659
|
+
Rendered layout layouts/application.html.erb (Duration: 10.7ms | Allocations: 6378)
|
660
|
+
Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.6ms | Allocations: 6660)
|
661
|
+
|
662
|
+
|
663
|
+
Started GET "/" for ::1 at 2024-06-28 11:39:27 +0300
|
664
|
+
Processing by HomeController#index as HTML
|
665
|
+
Rendering layout layouts/application.html.erb
|
666
|
+
Rendering home/index.html.erb within layouts/application
|
667
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 106)
|
668
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
669
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
670
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
671
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
672
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
673
|
+
↳ app/views/shared/_footer.html.erb:14
|
674
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.8ms | Allocations: 1775)
|
675
|
+
Rendered shared/_footer.html.erb (Duration: 3.1ms | Allocations: 1934)
|
676
|
+
Rendered layout layouts/application.html.erb (Duration: 4.5ms | Allocations: 2356)
|
677
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2638)
|
678
|
+
|
679
|
+
|
680
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:39:30 +0300
|
681
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
682
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"1", "id"=>""}
|
683
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
684
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
685
|
+
[1m[36mUser Update (0.5ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ?, "last_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_ip" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:39:30.418552"], ["sign_in_count", 1], ["current_sign_in_at", "2024-06-28 08:39:30.418348"], ["last_sign_in_at", "2024-06-28 08:39:30.418348"], ["current_sign_in_ip", "::1"], ["last_sign_in_ip", "::1"], ["id", 1]]
|
686
|
+
[1m[36mTRANSACTION (1.0ms)[0m [1m[36mcommit transaction[0m
|
687
|
+
Redirected to http://localhost:3000/
|
688
|
+
Completed 302 Found in 8ms (ActiveRecord: 1.8ms | Allocations: 4558)
|
689
|
+
|
690
|
+
|
691
|
+
Started GET "/" for ::1 at 2024-06-28 11:39:30 +0300
|
692
|
+
Processing by HomeController#index as HTML
|
693
|
+
Rendering layout layouts/application.html.erb
|
694
|
+
Rendering home/index.html.erb within layouts/application
|
695
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 214)
|
696
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
697
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
698
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
699
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
700
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
701
|
+
↳ app/views/shared/_footer.html.erb:14
|
702
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
703
|
+
↳ app/views/shared/_footer.html.erb:14
|
704
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 13.0ms | Allocations: 2700)
|
705
|
+
Rendered shared/_footer.html.erb (Duration: 13.2ms | Allocations: 2859)
|
706
|
+
Rendered layout layouts/application.html.erb (Duration: 14.0ms | Allocations: 3383)
|
707
|
+
Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.3ms | Allocations: 3666)
|
708
|
+
|
709
|
+
|
710
|
+
Started GET "/" for ::1 at 2024-06-28 11:40:27 +0300
|
711
|
+
Processing by HomeController#index as HTML
|
712
|
+
Rendering layout layouts/application.html.erb
|
713
|
+
Rendering home/index.html.erb within layouts/application
|
714
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 225)
|
715
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
716
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
717
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
718
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
719
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
720
|
+
↳ app/views/shared/_footer.html.erb:14
|
721
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
722
|
+
↳ app/views/shared/_footer.html.erb:14
|
723
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 4.3ms | Allocations: 2718)
|
724
|
+
Rendered shared/_footer.html.erb (Duration: 4.6ms | Allocations: 2877)
|
725
|
+
Rendered layout layouts/application.html.erb (Duration: 5.6ms | Allocations: 3408)
|
726
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.3ms | Allocations: 3699)
|
727
|
+
|
728
|
+
|
729
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:40:29 +0300
|
730
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
731
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"3", "id"=>"", "back_to_previous_id"=>""}
|
732
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
733
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[36mbegin transaction[0m
|
734
|
+
[1m[36mUser Update (0.4ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:40:29.570166"], ["sign_in_count", 2], ["current_sign_in_at", "2024-06-28 08:40:29.569974"], ["id", 3]]
|
735
|
+
[1m[36mTRANSACTION (2.2ms)[0m [1m[36mcommit transaction[0m
|
736
|
+
Redirected to http://localhost:3000/
|
737
|
+
Completed 302 Found in 11ms (ActiveRecord: 2.9ms | Allocations: 4608)
|
738
|
+
|
739
|
+
|
740
|
+
Started GET "/" for ::1 at 2024-06-28 11:40:29 +0300
|
741
|
+
Processing by HomeController#index as HTML
|
742
|
+
Rendering layout layouts/application.html.erb
|
743
|
+
Rendering home/index.html.erb within layouts/application
|
744
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 234)
|
745
|
+
Rendered shared/_header.html.erb (Duration: 0.1ms | Allocations: 6)
|
746
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
747
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
748
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
749
|
+
[1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
750
|
+
↳ app/views/shared/_footer.html.erb:14
|
751
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
752
|
+
↳ app/views/shared/_footer.html.erb:14
|
753
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
754
|
+
↳ app/views/shared/_footer.html.erb:14
|
755
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 5.5ms | Allocations: 3522)
|
756
|
+
Rendered shared/_footer.html.erb (Duration: 5.8ms | Allocations: 3681)
|
757
|
+
Rendered layout layouts/application.html.erb (Duration: 7.3ms | Allocations: 4225)
|
758
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.6ms | Allocations: 4507)
|
759
|
+
|
760
|
+
|
761
|
+
Started GET "/" for ::1 at 2024-06-28 11:40:37 +0300
|
762
|
+
[1m[35m (1.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
763
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
764
|
+
Processing by HomeController#index as HTML
|
765
|
+
Rendering layout layouts/application.html.erb
|
766
|
+
Rendering home/index.html.erb within layouts/application
|
767
|
+
Rendered home/index.html.erb within layouts/application (Duration: 7.3ms | Allocations: 1057)
|
768
|
+
Rendered shared/_header.html.erb (Duration: 0.4ms | Allocations: 115)
|
769
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.7ms | Allocations: 120)
|
770
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.5ms | Allocations: 172)
|
771
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.5ms | Allocations: 134)
|
772
|
+
[1m[36mUser Load (0.5ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
773
|
+
↳ app/views/shared/_footer.html.erb:14
|
774
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
775
|
+
↳ app/views/shared/_footer.html.erb:14
|
776
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
777
|
+
↳ app/views/shared/_footer.html.erb:14
|
778
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 30.0ms | Allocations: 15714)
|
779
|
+
Rendered shared/_footer.html.erb (Duration: 31.7ms | Allocations: 16624)
|
780
|
+
Rendered layout layouts/application.html.erb (Duration: 41.5ms | Allocations: 18706)
|
781
|
+
Completed 200 OK in 55ms (Views: 46.9ms | ActiveRecord: 1.3ms | Allocations: 22446)
|
782
|
+
|
783
|
+
|
784
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:40:41 +0300
|
785
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
786
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"3", "back_to_previous_id"=>""}
|
787
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
788
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[36mbegin transaction[0m
|
789
|
+
[1m[36mUser Update (0.5ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ?, "last_sign_in_at" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:42:08.772586"], ["sign_in_count", 3], ["current_sign_in_at", "2024-06-28 08:42:08.771534"], ["last_sign_in_at", "2024-06-28 08:40:29.569974"], ["id", 3]]
|
790
|
+
[1m[36mTRANSACTION (0.8ms)[0m [1m[36mcommit transaction[0m
|
791
|
+
Redirected to http://localhost:3000/
|
792
|
+
Completed 302 Found in 87062ms (ActiveRecord: 1.7ms | Allocations: 66305)
|
793
|
+
|
794
|
+
|
795
|
+
Started GET "/" for ::1 at 2024-06-28 11:42:08 +0300
|
796
|
+
Processing by HomeController#index as HTML
|
797
|
+
Rendering layout layouts/application.html.erb
|
798
|
+
Rendering home/index.html.erb within layouts/application
|
799
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 295)
|
800
|
+
Rendered shared/_header.html.erb (Duration: 0.1ms | Allocations: 7)
|
801
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
802
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
803
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
804
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
805
|
+
↳ app/views/shared/_footer.html.erb:14
|
806
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
807
|
+
↳ app/views/shared/_footer.html.erb:14
|
808
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
809
|
+
↳ app/views/shared/_footer.html.erb:14
|
810
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 6.0ms | Allocations: 3642)
|
811
|
+
Rendered shared/_footer.html.erb (Duration: 6.4ms | Allocations: 3804)
|
812
|
+
Rendered layout layouts/application.html.erb (Duration: 7.8ms | Allocations: 4431)
|
813
|
+
Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.4ms | Allocations: 4763)
|
814
|
+
|
815
|
+
|
816
|
+
Started GET "/" for ::1 at 2024-06-28 11:42:25 +0300
|
817
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
818
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
819
|
+
Processing by HomeController#index as HTML
|
820
|
+
Rendering layout layouts/application.html.erb
|
821
|
+
Rendering home/index.html.erb within layouts/application
|
822
|
+
Rendered home/index.html.erb within layouts/application (Duration: 5.6ms | Allocations: 1024)
|
823
|
+
Rendered shared/_header.html.erb (Duration: 0.4ms | Allocations: 115)
|
824
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.4ms | Allocations: 120)
|
825
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.5ms | Allocations: 172)
|
826
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.5ms | Allocations: 134)
|
827
|
+
[1m[36mUser Load (0.4ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
828
|
+
↳ app/views/shared/_footer.html.erb:14
|
829
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
830
|
+
↳ app/views/shared/_footer.html.erb:14
|
831
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
832
|
+
↳ app/views/shared/_footer.html.erb:14
|
833
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 26.7ms | Allocations: 15716)
|
834
|
+
Rendered shared/_footer.html.erb (Duration: 28.9ms | Allocations: 16626)
|
835
|
+
Rendered layout layouts/application.html.erb (Duration: 37.0ms | Allocations: 18675)
|
836
|
+
Completed 200 OK in 61ms (Views: 53.5ms | ActiveRecord: 1.1ms | Allocations: 22414)
|
837
|
+
|
838
|
+
|
839
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:42:29 +0300
|
840
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
841
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"2", "back_to_previous_id"=>""}
|
842
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
843
|
+
Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms | Allocations: 3896)
|
844
|
+
|
845
|
+
|
846
|
+
|
847
|
+
NoMethodError (undefined method `to_key' for :user:Symbol
|
848
|
+
|
849
|
+
[record.to_key, record.authenticatable_salt]
|
850
|
+
^^^^^^^
|
851
|
+
Did you mean? to_query):
|
852
|
+
|
853
|
+
devise (4.9.4) lib/devise/models/authenticatable.rb:238:in `serialize_into_session'
|
854
|
+
devise (4.9.4) lib/devise.rb:492:in `block (2 levels) in configure_warden!'
|
855
|
+
warden (1.2.9) lib/warden/session_serializer.rb:27:in `store'
|
856
|
+
warden (1.2.9) lib/warden/proxy.rb:187:in `set_user'
|
857
|
+
devise (4.9.4) lib/devise/controllers/sign_in_out.rb:53:in `sign_in'
|
858
|
+
/Users/admin/projects/any_login/lib/any_login/providers/devise.rb:9:in `block in <module:Controller>'
|
859
|
+
/Users/admin/projects/any_login/lib/any_login/providers/devise.rb:24:in `instance_exec'
|
860
|
+
/Users/admin/projects/any_login/lib/any_login/providers/devise.rb:24:in `any_login_sign_in'
|
861
|
+
/Users/admin/projects/any_login/app/controllers/any_login/application_controller.rb:19:in `call'
|
862
|
+
/Users/admin/projects/any_login/app/controllers/any_login/application_controller.rb:19:in `any_login'
|
863
|
+
actionpack (6.1.6.1) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
|
864
|
+
actionpack (6.1.6.1) lib/abstract_controller/base.rb:228:in `process_action'
|
865
|
+
actionpack (6.1.6.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
866
|
+
actionpack (6.1.6.1) lib/abstract_controller/callbacks.rb:42:in `block in process_action'
|
867
|
+
activesupport (6.1.6.1) lib/active_support/callbacks.rb:117:in `block in run_callbacks'
|
868
|
+
actiontext (6.1.6.1) lib/action_text/rendering.rb:20:in `with_renderer'
|
869
|
+
actiontext (6.1.6.1) lib/action_text/engine.rb:59:in `block (4 levels) in <class:Engine>'
|
870
|
+
activesupport (6.1.6.1) lib/active_support/callbacks.rb:126:in `instance_exec'
|
871
|
+
activesupport (6.1.6.1) lib/active_support/callbacks.rb:126:in `block in run_callbacks'
|
872
|
+
activesupport (6.1.6.1) lib/active_support/callbacks.rb:137:in `run_callbacks'
|
873
|
+
actionpack (6.1.6.1) lib/abstract_controller/callbacks.rb:41:in `process_action'
|
874
|
+
actionpack (6.1.6.1) lib/action_controller/metal/rescue.rb:22:in `process_action'
|
875
|
+
actionpack (6.1.6.1) lib/action_controller/metal/instrumentation.rb:34:in `block in process_action'
|
876
|
+
activesupport (6.1.6.1) lib/active_support/notifications.rb:203:in `block in instrument'
|
877
|
+
activesupport (6.1.6.1) lib/active_support/notifications/instrumenter.rb:24:in `instrument'
|
878
|
+
activesupport (6.1.6.1) lib/active_support/notifications.rb:203:in `instrument'
|
879
|
+
actionpack (6.1.6.1) lib/action_controller/metal/instrumentation.rb:33:in `process_action'
|
880
|
+
actionpack (6.1.6.1) lib/action_controller/metal/params_wrapper.rb:249:in `process_action'
|
881
|
+
activerecord (6.1.6.1) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
|
882
|
+
actionpack (6.1.6.1) lib/abstract_controller/base.rb:165:in `process'
|
883
|
+
actionview (6.1.6.1) lib/action_view/rendering.rb:39:in `process'
|
884
|
+
actionpack (6.1.6.1) lib/action_controller/metal.rb:190:in `dispatch'
|
885
|
+
actionpack (6.1.6.1) lib/action_controller/metal.rb:254:in `dispatch'
|
886
|
+
actionpack (6.1.6.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
887
|
+
actionpack (6.1.6.1) lib/action_dispatch/routing/route_set.rb:33:in `serve'
|
888
|
+
actionpack (6.1.6.1) lib/action_dispatch/journey/router.rb:50:in `block in serve'
|
889
|
+
actionpack (6.1.6.1) lib/action_dispatch/journey/router.rb:32:in `each'
|
890
|
+
actionpack (6.1.6.1) lib/action_dispatch/journey/router.rb:32:in `serve'
|
891
|
+
actionpack (6.1.6.1) lib/action_dispatch/routing/route_set.rb:842:in `call'
|
892
|
+
railties (6.1.6.1) lib/rails/engine.rb:539:in `call'
|
893
|
+
railties (6.1.6.1) lib/rails/railtie.rb:207:in `public_send'
|
894
|
+
railties (6.1.6.1) lib/rails/railtie.rb:207:in `method_missing'
|
895
|
+
actionpack (6.1.6.1) lib/action_dispatch/routing/mapper.rb:20:in `block in <class:Constraints>'
|
896
|
+
actionpack (6.1.6.1) lib/action_dispatch/routing/mapper.rb:49:in `serve'
|
897
|
+
actionpack (6.1.6.1) lib/action_dispatch/journey/router.rb:50:in `block in serve'
|
898
|
+
actionpack (6.1.6.1) lib/action_dispatch/journey/router.rb:32:in `each'
|
899
|
+
actionpack (6.1.6.1) lib/action_dispatch/journey/router.rb:32:in `serve'
|
900
|
+
actionpack (6.1.6.1) lib/action_dispatch/routing/route_set.rb:842:in `call'
|
901
|
+
clearance (2.6.0) lib/clearance/rack_session.rb:23:in `call'
|
902
|
+
warden (1.2.9) lib/warden/manager.rb:36:in `block in call'
|
903
|
+
warden (1.2.9) lib/warden/manager.rb:34:in `catch'
|
904
|
+
warden (1.2.9) lib/warden/manager.rb:34:in `call'
|
905
|
+
rack (2.2.9) lib/rack/tempfile_reaper.rb:15:in `call'
|
906
|
+
rack (2.2.9) lib/rack/etag.rb:27:in `call'
|
907
|
+
rack (2.2.9) lib/rack/conditional_get.rb:40:in `call'
|
908
|
+
rack (2.2.9) lib/rack/head.rb:12:in `call'
|
909
|
+
actionpack (6.1.6.1) lib/action_dispatch/http/permissions_policy.rb:22:in `call'
|
910
|
+
actionpack (6.1.6.1) lib/action_dispatch/http/content_security_policy.rb:19:in `call'
|
911
|
+
rack (2.2.9) lib/rack/session/abstract/id.rb:266:in `context'
|
912
|
+
rack (2.2.9) lib/rack/session/abstract/id.rb:260:in `call'
|
913
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/cookies.rb:689:in `call'
|
914
|
+
activerecord (6.1.6.1) lib/active_record/migration.rb:601:in `call'
|
915
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
|
916
|
+
activesupport (6.1.6.1) lib/active_support/callbacks.rb:98:in `run_callbacks'
|
917
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
|
918
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
|
919
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/actionable_exceptions.rb:18:in `call'
|
920
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/debug_exceptions.rb:29:in `call'
|
921
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
|
922
|
+
railties (6.1.6.1) lib/rails/rack/logger.rb:37:in `call_app'
|
923
|
+
railties (6.1.6.1) lib/rails/rack/logger.rb:26:in `block in call'
|
924
|
+
activesupport (6.1.6.1) lib/active_support/tagged_logging.rb:99:in `block in tagged'
|
925
|
+
activesupport (6.1.6.1) lib/active_support/tagged_logging.rb:37:in `tagged'
|
926
|
+
activesupport (6.1.6.1) lib/active_support/tagged_logging.rb:99:in `tagged'
|
927
|
+
railties (6.1.6.1) lib/rails/rack/logger.rb:26:in `call'
|
928
|
+
sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call'
|
929
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
|
930
|
+
request_store (1.5.1) lib/request_store/middleware.rb:19:in `call'
|
931
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/request_id.rb:26:in `call'
|
932
|
+
rack (2.2.9) lib/rack/method_override.rb:24:in `call'
|
933
|
+
rack (2.2.9) lib/rack/runtime.rb:22:in `call'
|
934
|
+
activesupport (6.1.6.1) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
|
935
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/executor.rb:14:in `call'
|
936
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/static.rb:24:in `call'
|
937
|
+
rack (2.2.9) lib/rack/sendfile.rb:110:in `call'
|
938
|
+
actionpack (6.1.6.1) lib/action_dispatch/middleware/host_authorization.rb:148:in `call'
|
939
|
+
railties (6.1.6.1) lib/rails/engine.rb:539:in `call'
|
940
|
+
rack (2.2.9) lib/rack/handler/webrick.rb:95:in `service'
|
941
|
+
webrick (1.7.0) lib/webrick/httpserver.rb:140:in `service'
|
942
|
+
webrick (1.7.0) lib/webrick/httpserver.rb:96:in `run'
|
943
|
+
webrick (1.7.0) lib/webrick/server.rb:310:in `block in start_thread'
|
944
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:42:49 +0300
|
945
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
946
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
947
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
948
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"2", "back_to_previous_id"=>""}
|
949
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
950
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
951
|
+
[1m[36mUser Update (0.6ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ?, "last_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_ip" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:42:49.872114"], ["sign_in_count", 1], ["current_sign_in_at", "2024-06-28 08:42:49.871678"], ["last_sign_in_at", "2024-06-28 08:42:49.871678"], ["current_sign_in_ip", "::1"], ["last_sign_in_ip", "::1"], ["id", 2]]
|
952
|
+
[1m[36mTRANSACTION (2.3ms)[0m [1m[36mcommit transaction[0m
|
953
|
+
Redirected to http://localhost:3000/
|
954
|
+
Completed 302 Found in 54ms (ActiveRecord: 4.1ms | Allocations: 17006)
|
955
|
+
|
956
|
+
|
957
|
+
Started GET "/" for ::1 at 2024-06-28 11:42:49 +0300
|
958
|
+
Processing by HomeController#index as HTML
|
959
|
+
Rendering layout layouts/application.html.erb
|
960
|
+
Rendering home/index.html.erb within layouts/application
|
961
|
+
Rendered home/index.html.erb within layouts/application (Duration: 1.5ms | Allocations: 864)
|
962
|
+
Rendered shared/_header.html.erb (Duration: 0.2ms | Allocations: 115)
|
963
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.2ms | Allocations: 120)
|
964
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.3ms | Allocations: 172)
|
965
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.3ms | Allocations: 107)
|
966
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
967
|
+
↳ app/views/shared/_footer.html.erb:14
|
968
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
969
|
+
↳ app/views/shared/_footer.html.erb:14
|
970
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
971
|
+
↳ app/views/shared/_footer.html.erb:14
|
972
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
973
|
+
↳ app/views/shared/_footer.html.erb:14
|
974
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 15.1ms | Allocations: 6846)
|
975
|
+
Rendered shared/_footer.html.erb (Duration: 17.8ms | Allocations: 7717)
|
976
|
+
Rendered layout layouts/application.html.erb (Duration: 21.3ms | Allocations: 9591)
|
977
|
+
Completed 200 OK in 29ms (Views: 25.9ms | ActiveRecord: 1.0ms | Allocations: 12230)
|
978
|
+
|
979
|
+
|
980
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:42:52 +0300
|
981
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
982
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"2", "back_to_previous_id"=>""}
|
983
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
984
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
985
|
+
[1m[36mUser Update (0.4ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:42:52.847038"], ["sign_in_count", 2], ["current_sign_in_at", "2024-06-28 08:42:52.846759"], ["id", 2]]
|
986
|
+
[1m[36mTRANSACTION (2.4ms)[0m [1m[36mcommit transaction[0m
|
987
|
+
Redirected to http://localhost:3000/
|
988
|
+
Completed 302 Found in 10ms (ActiveRecord: 2.9ms | Allocations: 4769)
|
989
|
+
|
990
|
+
|
991
|
+
Started GET "/" for ::1 at 2024-06-28 11:42:52 +0300
|
992
|
+
Processing by HomeController#index as HTML
|
993
|
+
Rendering layout layouts/application.html.erb
|
994
|
+
Rendering home/index.html.erb within layouts/application
|
995
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 216)
|
996
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
997
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
998
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
999
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
1000
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
1001
|
+
↳ app/views/shared/_footer.html.erb:14
|
1002
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 2], ["LIMIT", 1]]
|
1003
|
+
↳ app/views/shared/_footer.html.erb:14
|
1004
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 3], ["LIMIT", 1]]
|
1005
|
+
↳ app/views/shared/_footer.html.erb:14
|
1006
|
+
[1m[36mUser Load (0.1ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 1], ["LIMIT", 1]]
|
1007
|
+
↳ app/views/shared/_footer.html.erb:14
|
1008
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 7.1ms | Allocations: 4352)
|
1009
|
+
Rendered shared/_footer.html.erb (Duration: 7.4ms | Allocations: 4511)
|
1010
|
+
Rendered layout layouts/application.html.erb (Duration: 8.3ms | Allocations: 5038)
|
1011
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.4ms | Allocations: 5348)
|
1012
|
+
|
1013
|
+
|
1014
|
+
Started GET "/" for ::1 at 2024-06-28 11:42:57 +0300
|
1015
|
+
Processing by HomeController#index as HTML
|
1016
|
+
Rendering layout layouts/application.html.erb
|
1017
|
+
Rendering home/index.html.erb within layouts/application
|
1018
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 106)
|
1019
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
1020
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
1021
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
1022
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
|
1023
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
1024
|
+
↳ app/views/shared/_footer.html.erb:14
|
1025
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.6ms | Allocations: 1783)
|
1026
|
+
Rendered shared/_footer.html.erb (Duration: 3.1ms | Allocations: 1942)
|
1027
|
+
Rendered layout layouts/application.html.erb (Duration: 4.2ms | Allocations: 2364)
|
1028
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2646)
|
1029
|
+
|
1030
|
+
|
1031
|
+
Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:43:00 +0300
|
1032
|
+
Processing by AnyLogin::ApplicationController#any_login as HTML
|
1033
|
+
Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"4", "id"=>""}
|
1034
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
|
1035
|
+
[1m[36mTRANSACTION (0.1ms)[0m [1m[36mbegin transaction[0m
|
1036
|
+
[1m[36mUser Update (0.4ms)[0m [1m[33mUPDATE "users" SET "updated_at" = ?, "sign_in_count" = ?, "current_sign_in_at" = ?, "last_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_ip" = ? WHERE "users"."id" = ?[0m [["updated_at", "2024-06-28 08:43:00.678076"], ["sign_in_count", 1], ["current_sign_in_at", "2024-06-28 08:43:00.677901"], ["last_sign_in_at", "2024-06-28 08:43:00.677901"], ["current_sign_in_ip", "::1"], ["last_sign_in_ip", "::1"], ["id", 4]]
|
1037
|
+
[1m[36mTRANSACTION (2.1ms)[0m [1m[36mcommit transaction[0m
|
1038
|
+
Redirected to http://localhost:3000/
|
1039
|
+
Completed 302 Found in 9ms (ActiveRecord: 2.8ms | Allocations: 4567)
|
1040
|
+
|
1041
|
+
|
1042
|
+
Started GET "/" for ::1 at 2024-06-28 11:43:00 +0300
|
1043
|
+
Processing by HomeController#index as HTML
|
1044
|
+
Rendering layout layouts/application.html.erb
|
1045
|
+
Rendering home/index.html.erb within layouts/application
|
1046
|
+
Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 223)
|
1047
|
+
Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
|
1048
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
1049
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
|
1050
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.1ms | Allocations: 7)
|
1051
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
1052
|
+
↳ app/views/shared/_footer.html.erb:14
|
1053
|
+
[1m[36mUser Load (0.2ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
|
1054
|
+
↳ app/views/shared/_footer.html.erb:14
|
1055
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 4.2ms | Allocations: 2708)
|
1056
|
+
Rendered shared/_footer.html.erb (Duration: 4.6ms | Allocations: 2867)
|
1057
|
+
Rendered layout layouts/application.html.erb (Duration: 5.5ms | Allocations: 3400)
|
1058
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.3ms | Allocations: 3682)
|
1059
|
+
|
1060
|
+
|
1061
|
+
Started GET "/" for ::1 at 2024-06-28 11:54:04 +0300
|
1062
|
+
Processing by HomeController#index as HTML
|
1063
|
+
Rendering layout layouts/application.html.erb
|
1064
|
+
Rendering home/index.html.erb within layouts/application
|
1065
|
+
Rendered home/index.html.erb within layouts/application (Duration: 2.3ms | Allocations: 234)
|
1066
|
+
Rendered shared/_header.html.erb (Duration: 0.1ms | Allocations: 6)
|
1067
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
|
1068
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.1ms | Allocations: 5)
|
1069
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.2ms | Allocations: 7)
|
1070
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
1071
|
+
↳ app/views/shared/_footer.html.erb:14
|
1072
|
+
[1m[36mUser Load (0.6ms)[0m [1m[34mSELECT "users".* FROM "users" LIMIT ?[0m [["LIMIT", 10]]
|
1073
|
+
↳ app/views/shared/_footer.html.erb:14
|
1074
|
+
[1m[36mUser Load (0.3ms)[0m [1m[34mSELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ?[0m [["id", 4], ["LIMIT", 1]]
|
1075
|
+
↳ app/views/shared/_footer.html.erb:14
|
1076
|
+
Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 20.4ms | Allocations: 3634)
|
1077
|
+
Rendered shared/_footer.html.erb (Duration: 21.3ms | Allocations: 3793)
|
1078
|
+
Rendered layout layouts/application.html.erb (Duration: 26.7ms | Allocations: 4333)
|
1079
|
+
Completed 200 OK in 30ms (Views: 28.2ms | ActiveRecord: 1.6ms | Allocations: 4622)
|
1080
|
+
|
1081
|
+
|