any_login 1.5.3 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/any_login/application.css +3 -0
  3. data/app/controllers/any_login/application_controller.rb +1 -9
  4. data/app/views/any_login/_any_login.html.erb +4 -4
  5. data/app/views/any_login/assets/_css.html.erb +101 -0
  6. data/app/views/any_login/assets/_js.html.erb +25 -0
  7. data/config/routes.rb +0 -2
  8. data/lib/any_login/helpers.rb +3 -1
  9. data/lib/any_login/providers/devise.rb +1 -1
  10. data/lib/any_login/version.rb +1 -1
  11. data/test/rails_apps/authlogic/db/development.sqlite3 +0 -0
  12. data/test/rails_apps/authlogic/db/test.sqlite3 +0 -0
  13. data/test/rails_apps/authlogic/db/test.sqlite3-shm +0 -0
  14. data/test/rails_apps/authlogic/db/test.sqlite3-wal +0 -0
  15. data/test/rails_apps/authlogic/log/development.log +438 -0
  16. data/test/rails_apps/authlogic/log/test.log +1144 -0
  17. data/test/rails_apps/authlogic/tmp/development_secret.txt +1 -0
  18. data/test/rails_apps/authlogic/tmp/local_secret.txt +1 -0
  19. data/test/rails_apps/clearance/config/environment.rb +1 -0
  20. data/test/rails_apps/clearance/db/development.sqlite3 +0 -0
  21. data/test/rails_apps/clearance/db/test.sqlite3 +0 -0
  22. data/test/rails_apps/clearance/db/test.sqlite3-shm +0 -0
  23. data/test/rails_apps/clearance/db/test.sqlite3-wal +0 -0
  24. data/test/rails_apps/clearance/log/development.log +388 -0
  25. data/test/rails_apps/clearance/log/test.log +1110 -0
  26. data/test/rails_apps/clearance/tmp/development_secret.txt +1 -0
  27. data/test/rails_apps/clearance/tmp/local_secret.txt +1 -0
  28. data/test/rails_apps/devise/db/development.sqlite3 +0 -0
  29. data/test/rails_apps/devise/db/schema.rb +4 -4
  30. data/test/rails_apps/devise/db/test.sqlite3 +0 -0
  31. data/test/rails_apps/devise/db/test.sqlite3-shm +0 -0
  32. data/test/rails_apps/devise/db/test.sqlite3-wal +0 -0
  33. data/test/rails_apps/devise/log/development.log +1081 -0
  34. data/test/rails_apps/devise/log/test.log +2120 -0
  35. data/test/rails_apps/devise/tmp/development_secret.txt +1 -0
  36. data/test/rails_apps/devise/tmp/local_secret.txt +1 -0
  37. data/test/rails_apps/sorcery/db/development.sqlite3 +0 -0
  38. data/test/rails_apps/sorcery/db/test.sqlite3 +0 -0
  39. data/test/rails_apps/sorcery/db/test.sqlite3-shm +0 -0
  40. data/test/rails_apps/sorcery/db/test.sqlite3-wal +0 -0
  41. data/test/rails_apps/sorcery/log/development.log +247 -0
  42. data/test/rails_apps/sorcery/log/test.log +532 -0
  43. data/test/rails_apps/sorcery/tmp/development_secret.txt +1 -0
  44. data/test/rails_apps/sorcery/tmp/local_secret.txt +1 -0
  45. data/test/test_helper_common.rb +2 -1
  46. metadata +86 -7
  47. data/app/assets/javascripts/any_login/application.js +0 -23
@@ -0,0 +1,532 @@
1
+  (1.1ms) SELECT sqlite_version(*)
2
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
+  (1.5ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
4
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
+ Migrating to CreateUsers (20150907190739)
6
+ TRANSACTION (0.1ms) begin transaction
7
+  (0.5ms) CREATE 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)
8
+ ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150907190739"]]
9
+ TRANSACTION (0.9ms) commit transaction
10
+ Migrating to AddDeviseToUsers (20150907190846)
11
+ TRANSACTION (0.0ms) begin transaction
12
+  (0.6ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
13
+  (0.2ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
14
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_token" varchar
15
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
16
+  (0.2ms) ALTER TABLE "users" ADD "remember_created_at" datetime
17
+  (0.2ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
18
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
19
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
20
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
21
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
22
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
23
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
24
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150907190846"]]
25
+ TRANSACTION (1.0ms) commit transaction
26
+ Migrating to AddRoleToUsers (20150909210357)
27
+ TRANSACTION (0.0ms) begin transaction
28
+  (0.5ms) ALTER TABLE "users" ADD "role" varchar
29
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150909210357"]]
30
+ TRANSACTION (0.7ms) commit transaction
31
+ Migrating to SorceryCore (20151019154558)
32
+ TRANSACTION (0.0ms) begin transaction
33
+  (0.5ms) ALTER TABLE "users" ADD "crypted_password" varchar
34
+  (0.2ms) ALTER TABLE "users" ADD "salt" varchar
35
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151019154558"]]
36
+ TRANSACTION (0.7ms) commit transaction
37
+ Migrating to PopulateTestUsers (20220827040518)
38
+ TRANSACTION (0.0ms) begin transaction
39
+ User Create (0.5ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 0"], ["age", 32], ["created_at", "2024-06-28 08:12:37.308051"], ["updated_at", "2024-06-28 08:12:37.308051"], ["email", "igor0@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$xn.sfxmrZnFqP746SQ5mw.451FVxyd6gDl6Yqnn9nlHH579RO2Ine"], ["salt", "EAbH1vKG51HbF6DUr9x1"]]
40
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 1"], ["age", 90], ["created_at", "2024-06-28 08:12:37.373101"], ["updated_at", "2024-06-28 08:12:37.373101"], ["email", "stan1@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$y.KWB6gfXpu5AkRblfvL0uuEen9x7i3qCGVb4xTf6.uutEuitb7Zy"], ["salt", "K__6Zk6sQcic3Ry_iLwF"]]
41
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 2"], ["age", 88], ["created_at", "2024-06-28 08:12:37.437113"], ["updated_at", "2024-06-28 08:12:37.437113"], ["email", "bob2@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$ZsBiAFaez/Hzt.wTohGLMe/j4nhZ0DSttqohG9bPR.rnC2WWT6ijy"], ["salt", "c1RcLWuZ6yi-AYs9YH56"]]
42
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 3"], ["age", 59], ["created_at", "2024-06-28 08:12:37.501927"], ["updated_at", "2024-06-28 08:12:37.501927"], ["email", "stan3@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$7Trf89J5O64gew0lvlHRguMVrNvl1wD4zV5ql2tQapk/dQEeyP7Ku"], ["salt", "aEQ8VmFBGPymjSvXeMxn"]]
43
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 4"], ["age", 29], ["created_at", "2024-06-28 08:12:37.565425"], ["updated_at", "2024-06-28 08:12:37.565425"], ["email", "igor4@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$C53YhluthKvQHeh84mjGfeXXWNqx.DA6oD4oabcvB2eEsAH3nPdx."], ["salt", "GsnKFFnNzpa2VELUJi87"]]
44
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 5"], ["age", 73], ["created_at", "2024-06-28 08:12:37.629440"], ["updated_at", "2024-06-28 08:12:37.629440"], ["email", "stan5@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$oEMQ03GLSI/m0.s1zqAfoOQzHACANPKHXnHMKFQeGiw7m9a0RERje"], ["salt", "s1U7yHKSCUJeAwcfrQWZ"]]
45
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 6"], ["age", 88], ["created_at", "2024-06-28 08:12:37.694060"], ["updated_at", "2024-06-28 08:12:37.694060"], ["email", "kris6@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$34O3.dC8PJ.vfhQcc3icIufjE0IL4dYEP17Hb4M/rLmGtulYNBCwi"], ["salt", "vEPsBr2DBkoiyHmL2hse"]]
46
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 7"], ["age", 72], ["created_at", "2024-06-28 08:12:37.757732"], ["updated_at", "2024-06-28 08:12:37.757732"], ["email", "alan7@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$nV.BC9hXvaSqsY37S6QHwuUP1D2oWW9SKG2NAsSdB2BFd.F8EqNei"], ["salt", "31DjEY7dwHycbT23BmoC"]]
47
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 8"], ["age", 22], ["created_at", "2024-06-28 08:12:37.821164"], ["updated_at", "2024-06-28 08:12:37.821164"], ["email", "stan8@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$Lr3CIq75MfpWn8JIaarciebtJVuHSw6P8eDwmstHfgiD8Q5por8yi"], ["salt", "-i5K95izgUb6-JHR3sy3"]]
48
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 9"], ["age", 53], ["created_at", "2024-06-28 08:12:37.884350"], ["updated_at", "2024-06-28 08:12:37.884350"], ["email", "stan9@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$podppjvfbWXq.JXDVFsYauPukydEiUBYkfuTdhlBrimlGRxlE/mTq"], ["salt", "gcKjJ9LiCiqEFX47Zw8n"]]
49
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 10"], ["age", 12], ["created_at", "2024-06-28 08:12:37.948167"], ["updated_at", "2024-06-28 08:12:37.948167"], ["email", "bob10@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$j6nPVS.AhYnYAPIEFaurwug6pPCbvZlrld4DE8gRLUDIecNvcHycq"], ["salt", "ro-aSEGr5bFM4z651C3T"]]
50
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 11"], ["age", 40], ["created_at", "2024-06-28 08:12:38.013023"], ["updated_at", "2024-06-28 08:12:38.013023"], ["email", "alan11@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$qNoVUESD2lhb4gGEQiJmRel27AWG1YiymMIGt/pkh7hq4b67QdyW."], ["salt", "2dm8VSkAxRajMDR6QufJ"]]
51
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 12"], ["age", 97], ["created_at", "2024-06-28 08:12:38.078151"], ["updated_at", "2024-06-28 08:12:38.078151"], ["email", "michaeljohn12@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$6na.GWZfzj5xYRT2Eu/lDOeLFOxiaSDvJUthOL1t4w6AhZq1JNss2"], ["salt", "VfFxZTeyWatRmAkdKjAE"]]
52
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 13"], ["age", 27], ["created_at", "2024-06-28 08:12:38.144591"], ["updated_at", "2024-06-28 08:12:38.144591"], ["email", "kris13@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$O7AZP9qK5eRm9gX7ngoeieMq7y8iy4f.5tLnKVa.bk/nMBVXAqyXG"], ["salt", "V7_xPgfMzJJx79-xgtBN"]]
53
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 14"], ["age", 20], ["created_at", "2024-06-28 08:12:38.210661"], ["updated_at", "2024-06-28 08:12:38.210661"], ["email", "michaeljohn14@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$ApI8nhb7zeIBP49kZQVsuuxo1yoHBDSb6XD9GRlX5jNG71Ey.3xR."], ["salt", "mAXYheTZRezkLyJYUuzX"]]
54
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 15"], ["age", 0], ["created_at", "2024-06-28 08:12:38.274277"], ["updated_at", "2024-06-28 08:12:38.274277"], ["email", "michaeljohn15@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$asc.gck77viHs9nZ24PdseGMCgoJJlfhOUU/UOW9JXpT/5qeH6Tka"], ["salt", "QmssvoCoXdANTTpMSUms"]]
55
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 16"], ["age", 86], ["created_at", "2024-06-28 08:12:38.337589"], ["updated_at", "2024-06-28 08:12:38.337589"], ["email", "bob16@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$IjKsFLa/sCxFJAI/8gP1uef1xfY19VS5hDRk.Ou3y9FGLhlH2eJfS"], ["salt", "s9x_GYVoXad596ZtkrNK"]]
56
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 17"], ["age", 74], ["created_at", "2024-06-28 08:12:38.400831"], ["updated_at", "2024-06-28 08:12:38.400831"], ["email", "michaeljohn17@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$p.58oHuqa8hu912b4GeMZ.XlOdRyP4uBCbnYQWQBk39Hphriydome"], ["salt", "ystm3MpHDknseTwz_2K6"]]
57
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 18"], ["age", 2], ["created_at", "2024-06-28 08:12:38.464644"], ["updated_at", "2024-06-28 08:12:38.464644"], ["email", "alan18@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$JYUeDUx3R5blTFnBfOI2fed.bkgvxQ72.mSvMChk43oyvwiD4EzuG"], ["salt", "Rz12_Nz4qvzSjnojxbu4"]]
58
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 19"], ["age", 35], ["created_at", "2024-06-28 08:12:38.528327"], ["updated_at", "2024-06-28 08:12:38.528327"], ["email", "stan19@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$rG3iuBAB9v5D5gglTzDqrO3Bf2zBwO9Fz2sIgJ8eYV1KP8EWGDcie"], ["salt", "MsYkM7rPQ-QepwuHoquL"]]
59
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 20"], ["age", 47], ["created_at", "2024-06-28 08:12:38.591980"], ["updated_at", "2024-06-28 08:12:38.591980"], ["email", "michaeljohn20@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$.ajsL7Y8mXR01X5bnYQfXec6a0VbWsc3we9YLfDuHvouaGU/iuvGO"], ["salt", "iyDikeBssszAY7ZDVw8b"]]
60
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 21"], ["age", 16], ["created_at", "2024-06-28 08:12:38.655430"], ["updated_at", "2024-06-28 08:12:38.655430"], ["email", "alan21@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$zlpTO.JHt7Vh6Eo.N1d1w.aVg62Y7PNTwEkNize5GjKYxvlWjXPY."], ["salt", "Fd2KzgECkJQ7gsKQjEP_"]]
61
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 22"], ["age", 10], ["created_at", "2024-06-28 08:12:38.719744"], ["updated_at", "2024-06-28 08:12:38.719744"], ["email", "bob22@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$FUyj41La6FHgoEz3FMTHNeag865F42Iz2uSgMXt5OiQFR3wrqzwqq"], ["salt", "XUqV5m8Jjj5HtyJPy7cp"]]
62
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 23"], ["age", 92], ["created_at", "2024-06-28 08:12:38.783533"], ["updated_at", "2024-06-28 08:12:38.783533"], ["email", "kris23@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$AlTyvDjOldUex17ZHtEq7uarhAwlHQYg9H47YOVcVdOfT6iXkqmgy"], ["salt", "QnUfn7JukshMUbrxzHwV"]]
63
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 24"], ["age", 35], ["created_at", "2024-06-28 08:12:38.847107"], ["updated_at", "2024-06-28 08:12:38.847107"], ["email", "kris24@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$ujL6Ca81PjUMlVWz/FnZWuP7/kPnMOcPDP1HLaTBVP2p7GPqsdzf6"], ["salt", "k9TAprdmNtrzu1sFCLwa"]]
64
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 25"], ["age", 28], ["created_at", "2024-06-28 08:12:38.911067"], ["updated_at", "2024-06-28 08:12:38.911067"], ["email", "kris25@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$1pt2Ra8/NH7ReIHv2s0HXeSBgWLDOfP4LAHfItrS6fVXkNUVXRz6y"], ["salt", "f7iPS_VwHz4ssqDxargy"]]
65
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 26"], ["age", 10], ["created_at", "2024-06-28 08:12:38.974736"], ["updated_at", "2024-06-28 08:12:38.974736"], ["email", "alan26@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$wZI7jB5onXSWNh16PeApZuO2MSAvXxsH9yiwYyQqcS9dJmGJwvFIi"], ["salt", "TgmbeXQ28vY5zeCJh-Vq"]]
66
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 27"], ["age", 5], ["created_at", "2024-06-28 08:12:39.038259"], ["updated_at", "2024-06-28 08:12:39.038259"], ["email", "michaeljohn27@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$VGbw2waFsB68wgupQduLkOox8HjbWtwWtbQl.PVWKzMZTRYUzQnNe"], ["salt", "yxF1KW2g9M1ssdi3vF4x"]]
67
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 28"], ["age", 18], ["created_at", "2024-06-28 08:12:39.101791"], ["updated_at", "2024-06-28 08:12:39.101791"], ["email", "bob28@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$1BB7gvgVJQ3DfAmvDY8E/ujuB1W2.SjWCM2TXktJYxXCUNdw2twq6"], ["salt", "EzaPZ9xT8zYEpHzu7Mhu"]]
68
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 29"], ["age", 89], ["created_at", "2024-06-28 08:12:39.167020"], ["updated_at", "2024-06-28 08:12:39.167020"], ["email", "kris29@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$cX1gDrkXdzSnus4RgR/kl.DfUobWpxB9ENdqeV4ZzGQiMfTOHsf6W"], ["salt", "99EuxymF4DHJT45iJXGv"]]
69
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 30"], ["age", 0], ["created_at", "2024-06-28 08:12:39.233434"], ["updated_at", "2024-06-28 08:12:39.233434"], ["email", "kris30@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$XFj/xn3Mc8rTyyMQqQGI3uj3UHIfVM3HtjDyMJRpXqETQyTfxgzt."], ["salt", "ADyYjBypXxRgytKQ9DxV"]]
70
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 31"], ["age", 46], ["created_at", "2024-06-28 08:12:39.299371"], ["updated_at", "2024-06-28 08:12:39.299371"], ["email", "stan31@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$GYEno8VcOjCdi2vIRWmhH.rvx3pg2JsXQtzLztSHLjl2rpP72YN22"], ["salt", "rBEz4wHL6Agz1RgzxQ4x"]]
71
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 32"], ["age", 9], ["created_at", "2024-06-28 08:12:39.366556"], ["updated_at", "2024-06-28 08:12:39.366556"], ["email", "alan32@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$x8YPg3DxJ4pq11BYl57ZtOQsvMnB5GjYZUDygbgeTQmaJc.l9szla"], ["salt", "iu4eoEDufS_zRfrzQuXK"]]
72
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 33"], ["age", 35], ["created_at", "2024-06-28 08:12:39.431394"], ["updated_at", "2024-06-28 08:12:39.431394"], ["email", "stan33@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$Q589GvrTU1E.0fzcUrhgC.kRC5Drowcw3qwSdt/IpGdOCWR23n5eq"], ["salt", "pwPgrPmgNh8s2ZK7Yw6x"]]
73
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 34"], ["age", 22], ["created_at", "2024-06-28 08:12:39.495009"], ["updated_at", "2024-06-28 08:12:39.495009"], ["email", "michaeljohn34@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$gaGl0crBPUNZ69EXKkBx2eWCtymcrOQ.AEeOto1Xp1B8Xc34MOTVe"], ["salt", "r6i5wUyobHTzE3zs-sBs"]]
74
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 35"], ["age", 62], ["created_at", "2024-06-28 08:12:39.567508"], ["updated_at", "2024-06-28 08:12:39.567508"], ["email", "alan35@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$W08yyzlNQbdJEvMSVhgMBOBPCnyCm1493SK7HH3ccYem81g0g3mW2"], ["salt", "sxmw4j3cPus7s7LjNsLx"]]
75
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 36"], ["age", 48], ["created_at", "2024-06-28 08:12:39.632953"], ["updated_at", "2024-06-28 08:12:39.632953"], ["email", "michaeljohn36@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$jVb.wy5fp6O1rR/lLn61ouu5MlV1WcqzTNIN4U3tYTv7.f3TFlr1y"], ["salt", "yb_WBWT9icfRzkT23fxZ"]]
76
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 37"], ["age", 68], ["created_at", "2024-06-28 08:12:39.698934"], ["updated_at", "2024-06-28 08:12:39.698934"], ["email", "bob37@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$p85GDcEPVD79wzIUT1kgWO/NWnxU3ZhnC8kv1NhpiYxvby8Lp3c7e"], ["salt", "Q4nRQxwxy2RodhoJ-dMR"]]
77
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 38"], ["age", 70], ["created_at", "2024-06-28 08:12:39.764864"], ["updated_at", "2024-06-28 08:12:39.764864"], ["email", "igor38@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$80rgoam6Gjt04rJLR/X4juieR.dhyjJfzuQEXDKOA/3t6nEgJtOAm"], ["salt", "xp6JscghJVq6CgsRYdbX"]]
78
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 39"], ["age", 97], ["created_at", "2024-06-28 08:12:39.828830"], ["updated_at", "2024-06-28 08:12:39.828830"], ["email", "alan39@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$sNDRfrIwEk8e4q4X7lqvju6tIHyJ23Nyprn2KBz/yrjcp7OMN5IpC"], ["salt", "yWqiaN6gSvGHzsPsEFwh"]]
79
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 40"], ["age", 53], ["created_at", "2024-06-28 08:12:39.894833"], ["updated_at", "2024-06-28 08:12:39.894833"], ["email", "bob40@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$6aybQPgQ29Kztr0wiriUTeze6Q77SjWriVaTsbCFCp/hr2hve2vtm"], ["salt", "-HgGrndYGzv2Fsw8pK_4"]]
80
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 41"], ["age", 12], ["created_at", "2024-06-28 08:12:39.958908"], ["updated_at", "2024-06-28 08:12:39.958908"], ["email", "alan41@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$diVu5HdDUla11sgJN6Z1K.WAb8d/EJcdCd3Kh/q6NHQn/pXG6w0xS"], ["salt", "M-Ak-x-XZNpfqzi5dW22"]]
81
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 42"], ["age", 17], ["created_at", "2024-06-28 08:12:40.022270"], ["updated_at", "2024-06-28 08:12:40.022270"], ["email", "igor42@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$nJJY5d5jPhzoVCl6fjc9OelbJRfgM6euokZl/fZPNOXlOdJMKMh5G"], ["salt", "fKAVTuyf9VgWGA9z5mr4"]]
82
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 43"], ["age", 99], ["created_at", "2024-06-28 08:12:40.085489"], ["updated_at", "2024-06-28 08:12:40.085489"], ["email", "stan43@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$FkxDRwpnHqStgYCAc7c65eHN/neBrDHkyCubEkv/KU5QpOoSdX3Oi"], ["salt", "SpFyYE-HGKnQvvTk5kgQ"]]
83
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 44"], ["age", 41], ["created_at", "2024-06-28 08:12:40.148796"], ["updated_at", "2024-06-28 08:12:40.148796"], ["email", "kris44@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$t8ftTO60zQ7C9zx1pKJVNORgYVMx9rt7kYU28a4/Teh2ek1pUcwae"], ["salt", "q_JkAug4CEoEVJpSeA99"]]
84
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 45"], ["age", 84], ["created_at", "2024-06-28 08:12:40.212913"], ["updated_at", "2024-06-28 08:12:40.212913"], ["email", "bob45@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$aCK03HjzmwST0WBZ85oz0uqnxPW1j1YKQ2XxmqTTlwGGUC2OL7cdK"], ["salt", "izjoDjsejxzfXp6ahW7a"]]
85
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 46"], ["age", 80], ["created_at", "2024-06-28 08:12:40.278894"], ["updated_at", "2024-06-28 08:12:40.278894"], ["email", "alan46@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$f8/OEbpprtdGQpF5o/wGAOpEfx0jvcyKwb9rhm8iiOTl9lCOm6Sy2"], ["salt", "XLBgru1ehMc6XryqiLHP"]]
86
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 47"], ["age", 46], ["created_at", "2024-06-28 08:12:40.343975"], ["updated_at", "2024-06-28 08:12:40.343975"], ["email", "stan47@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$14cFuUaXZpt2aAuPq/IbyuCDAJy0ES5av0sZydz9Pzj1DxjlohMYi"], ["salt", "aq9Kz2sHLaCzz-zv8pxJ"]]
87
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 48"], ["age", 17], ["created_at", "2024-06-28 08:12:40.407887"], ["updated_at", "2024-06-28 08:12:40.407887"], ["email", "igor48@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$qPDXGTLAkoR2poKe9Y/4De5Bt64QDZvzGQg/Mah3IS0xP/jdnpIou"], ["salt", "_3eysDB9pU_bye-FJQHx"]]
88
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 49"], ["age", 55], ["created_at", "2024-06-28 08:12:40.471709"], ["updated_at", "2024-06-28 08:12:40.471709"], ["email", "bob49@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$gqCKf.fOxyYF04AJaWFTU.EZXtXvODToQOg4o9URrpcyG5nXylPa2"], ["salt", "puLHcJDNxuEsHVvCx43z"]]
89
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 50"], ["age", 15], ["created_at", "2024-06-28 08:12:40.535187"], ["updated_at", "2024-06-28 08:12:40.535187"], ["email", "bob50@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$Y5NLzMdA2A3Kee3EVfmHSe9z3GsZPwPwUD62hCFQg2m8cTS0g6D2C"], ["salt", "y6bszqLW2FdQsRMrXupu"]]
90
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 51"], ["age", 40], ["created_at", "2024-06-28 08:12:40.600406"], ["updated_at", "2024-06-28 08:12:40.600406"], ["email", "igor51@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$Bq7ypXfzfpdtJMWCT46cEuZ5dv6tHApVxbvyvdY7Tc9/fO9vN1xd."], ["salt", "JyD-BDRhnyteXUbNsR_h"]]
91
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 52"], ["age", 63], ["created_at", "2024-06-28 08:12:40.677557"], ["updated_at", "2024-06-28 08:12:40.677557"], ["email", "stan52@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$cf4QA4UaBBgoGapteoN2QeQqjoZveC9FJ5gg23Lv8M3c0zdAUSEQm"], ["salt", "zrD8KT-RDTJnC5qxxBfU"]]
92
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 53"], ["age", 25], ["created_at", "2024-06-28 08:12:40.763978"], ["updated_at", "2024-06-28 08:12:40.763978"], ["email", "stan53@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$NeJ.8ExU0ntRFlcXdmLxmeYq9PP9jF5v4s/OrgBZc8NoH5tUfF.gG"], ["salt", "LV6PWX1zm_JeKobWWiMW"]]
93
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 54"], ["age", 94], ["created_at", "2024-06-28 08:12:40.835228"], ["updated_at", "2024-06-28 08:12:40.835228"], ["email", "kris54@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$Wjl/TeWOldAjM53QtduEVe66lEPH8E7Q9Own35NmBewMfQDdAzgVW"], ["salt", "AyxejuzvhidzCwPypYnV"]]
94
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 55"], ["age", 47], ["created_at", "2024-06-28 08:12:40.898692"], ["updated_at", "2024-06-28 08:12:40.898692"], ["email", "kris55@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$V68Kupd9nrH5T.m5Ca/u0e935np8BNG7kVOytkg0ikvZ2xvYRRYPC"], ["salt", "acCECrtXPqLdcQBHt4om"]]
95
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 56"], ["age", 57], ["created_at", "2024-06-28 08:12:40.963069"], ["updated_at", "2024-06-28 08:12:40.963069"], ["email", "kris56@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$SZI5sswC1SHdAFCqLMu1muafwYz5WA8dJIZAmWs6nA9c147tYJw0C"], ["salt", "sQPH-obQYksakVv8Ffbw"]]
96
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 57"], ["age", 5], ["created_at", "2024-06-28 08:12:41.026916"], ["updated_at", "2024-06-28 08:12:41.026916"], ["email", "igor57@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$5zAV1U1hB9NYr28fDbxpHuY1hcgVmgYSurFEN/83KWMcmOEswWFxG"], ["salt", "n74CsQzzhk5i5LFY_zjA"]]
97
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 58"], ["age", 46], ["created_at", "2024-06-28 08:12:41.091104"], ["updated_at", "2024-06-28 08:12:41.091104"], ["email", "bob58@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$oWrrTa6ZocBKSJqMw88M7egKcAnZimr6fwFGL/oTJ6f8UTVU1QTt6"], ["salt", "oeS9sys1y8r5iSzFqqyZ"]]
98
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 59"], ["age", 60], ["created_at", "2024-06-28 08:12:41.156348"], ["updated_at", "2024-06-28 08:12:41.156348"], ["email", "michaeljohn59@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$/9.tgG0nvec3EZQhD7.luuiZwRbqBwldiHhSDCrPyft.R2T2hsyuC"], ["salt", "GtfwgKoLgtMUPxAcsEsM"]]
99
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 60"], ["age", 64], ["created_at", "2024-06-28 08:12:41.221032"], ["updated_at", "2024-06-28 08:12:41.221032"], ["email", "kris60@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$7qib8MJ8gh3eJ81L9nNZZ.LVka3oQDC4Ok1s4bTiOOgkMVXV2Gu2i"], ["salt", "Y2UoPzWxzztJ57upXGaJ"]]
100
+ User Create (0.4ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 61"], ["age", 92], ["created_at", "2024-06-28 08:12:41.284210"], ["updated_at", "2024-06-28 08:12:41.284210"], ["email", "michaeljohn61@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$tcrGdn7/Dcxc7c/qftHmmeET9BaM1YPH5fsc61xdUg9Nv/hSQC1me"], ["salt", "EfShnC-YaJ4yzMb1RFH1"]]
101
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 62"], ["age", 50], ["created_at", "2024-06-28 08:12:41.350813"], ["updated_at", "2024-06-28 08:12:41.350813"], ["email", "kris62@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$EmZJ.NrPZWgOcCIjtnAFtO6Y8kPSWWK5PChqhXQoIWssyfm4546cy"], ["salt", "WhqrxM1-49bw_x7MkscF"]]
102
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 63"], ["age", 36], ["created_at", "2024-06-28 08:12:41.414814"], ["updated_at", "2024-06-28 08:12:41.414814"], ["email", "bob63@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$t9cuxme3JqsWL87aLI3NSOWIGmi7YZx4AX3h2kDYDURrehBNRdwBu"], ["salt", "eGrxt4MiKSG7uKujTxQo"]]
103
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 64"], ["age", 37], ["created_at", "2024-06-28 08:12:41.479317"], ["updated_at", "2024-06-28 08:12:41.479317"], ["email", "alan64@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$QaatmTm0vUtsMjZsYp7p9urlEn4fVaIQqS2Sl/XLD4hrEvtzdymp6"], ["salt", "ggkrEhEo3xfhxyf-GKkj"]]
104
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 65"], ["age", 78], ["created_at", "2024-06-28 08:12:41.543448"], ["updated_at", "2024-06-28 08:12:41.543448"], ["email", "bob65@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$JhtYweOp.2jN.StKTqDZLupzTiBq5geldZRbWeuqFh.L51jOsqFva"], ["salt", "t3JzmnMN3NgzKcaHNUdz"]]
105
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 66"], ["age", 80], ["created_at", "2024-06-28 08:12:41.607258"], ["updated_at", "2024-06-28 08:12:41.607258"], ["email", "alan66@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$EGxKdHH12Wm.fXwwl0K2eengrcLQinJuqtosyUIO4ZlMc7dg.xwmq"], ["salt", "4UVotbHnQ16MxqDh4QWf"]]
106
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 67"], ["age", 10], ["created_at", "2024-06-28 08:12:41.671498"], ["updated_at", "2024-06-28 08:12:41.671498"], ["email", "michaeljohn67@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$zi5b7mT/LCifgDPitKU12O5FQG5McKKqv9p1W/vtJrPalWUdY1w4."], ["salt", "vzA_BT1UbWUhPKJYgzon"]]
107
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 68"], ["age", 45], ["created_at", "2024-06-28 08:12:41.735142"], ["updated_at", "2024-06-28 08:12:41.735142"], ["email", "kris68@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$6EdsCdB5VCtkSy3ofUNTxe3DvY2Rorvp48slBs1t0JzlwgedrClWW"], ["salt", "zgKRE9ggiAxymDHSryRd"]]
108
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 69"], ["age", 45], ["created_at", "2024-06-28 08:12:41.800832"], ["updated_at", "2024-06-28 08:12:41.800832"], ["email", "alan69@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$xYO3bji/tRVfFpNVAm3VDO3xH4cCu7vNS0aCDYormPVmSOH2K68cW"], ["salt", "sRYRkGPXXNayrrfoMe4X"]]
109
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 70"], ["age", 67], ["created_at", "2024-06-28 08:12:41.866359"], ["updated_at", "2024-06-28 08:12:41.866359"], ["email", "michaeljohn70@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$4S09XJ.ggV6DgJGgJ24WF.CPvyLm71uTPoxjHAFbw0xYgvDn1Jf3."], ["salt", "FvpECE4_vLRQUbbaE9n3"]]
110
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 71"], ["age", 5], ["created_at", "2024-06-28 08:12:41.930437"], ["updated_at", "2024-06-28 08:12:41.930437"], ["email", "michaeljohn71@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$EFKzFoGKL.X/5ESZByIlT.uIVpd14aqfYkh6wV7kXTyBzzmtB9/FC"], ["salt", "asLiSzL63zFz1qYxTTsr"]]
111
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 72"], ["age", 88], ["created_at", "2024-06-28 08:12:41.994076"], ["updated_at", "2024-06-28 08:12:41.994076"], ["email", "alan72@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$4kv5vZuEvGIKJ2C0v1SMQO6SuN9KDJDsJJsG.u4YlNTxnXbNnojIy"], ["salt", "JzkcPy2puMMiGSLL-Psx"]]
112
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 73"], ["age", 16], ["created_at", "2024-06-28 08:12:42.057475"], ["updated_at", "2024-06-28 08:12:42.057475"], ["email", "kris73@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$wtjtfEHt2G1m72OemiEmXe8ZfO3chDDAUcgQoNglBVZB4LJubY2M."], ["salt", "G7v8YS7n1kjekfaW8P86"]]
113
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 74"], ["age", 63], ["created_at", "2024-06-28 08:12:42.121874"], ["updated_at", "2024-06-28 08:12:42.121874"], ["email", "bob74@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$Zp7s7oAQYTw.qyc3OG1J/OVOKivVHWu1qTdgm4LiiAf1Hdn3vJOga"], ["salt", "HhN6PiHF7LzReZcTzPyt"]]
114
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 75"], ["age", 30], ["created_at", "2024-06-28 08:12:42.187014"], ["updated_at", "2024-06-28 08:12:42.187014"], ["email", "kris75@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$b3Q.GPPAIlbs7NLyKF/Z5.oEMjJORHTGjlbfOeYC16GkYWYoc/HYq"], ["salt", "PuBoS_xnWPnSdwS55zyG"]]
115
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 76"], ["age", 96], ["created_at", "2024-06-28 08:12:42.250562"], ["updated_at", "2024-06-28 08:12:42.250562"], ["email", "bob76@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$.5pO2EvOQ.npLrIZpABtiujmYU04DDWsOldDK5Os1DM210mWt7pcO"], ["salt", "TUT_VMBqRy2J7ZrQ3U6C"]]
116
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 77"], ["age", 5], ["created_at", "2024-06-28 08:12:42.314190"], ["updated_at", "2024-06-28 08:12:42.314190"], ["email", "bob77@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$Z1e2L/qi6/BP3PbgWpDteO3V0K8JWN0lZRXifuBPuGmvOGaGYtD4G"], ["salt", "iY7ZRnT6A946szMPTX9y"]]
117
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 78"], ["age", 25], ["created_at", "2024-06-28 08:12:42.379477"], ["updated_at", "2024-06-28 08:12:42.379477"], ["email", "bob78@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$cqmcRNsE6TnQo4NftSDIXuVi/gVn.ybWwcpRpQGKXOlqOqqMzNeQq"], ["salt", "2Exz-kxeYnvVqgQmeSoY"]]
118
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 79"], ["age", 12], ["created_at", "2024-06-28 08:12:42.445304"], ["updated_at", "2024-06-28 08:12:42.445304"], ["email", "stan79@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$u04cvCQBNAjasU0ifu781.NfMti/KYh5kjwnCh/mloyFYOT2xfyJK"], ["salt", "gEdGZ8k9ZytD7vGCeNE_"]]
119
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 80"], ["age", 47], ["created_at", "2024-06-28 08:12:42.509703"], ["updated_at", "2024-06-28 08:12:42.509703"], ["email", "alan80@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$xvaiwGF4lmlRMoNbU0vPIeSd9ixBMOq0c8S2jr1gQtqMIitwU8ey2"], ["salt", "WAvKQxvCzCe5eFJyMSeZ"]]
120
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 81"], ["age", 84], ["created_at", "2024-06-28 08:12:42.573779"], ["updated_at", "2024-06-28 08:12:42.573779"], ["email", "igor81@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$mwtSnTtBFnPYC0F7KwHS1.6U2dAHwoU9vHyt2jc8pvWZdrISaEiFi"], ["salt", "dNsyRN1pNzTX5Nvgpqy6"]]
121
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 82"], ["age", 74], ["created_at", "2024-06-28 08:12:42.637614"], ["updated_at", "2024-06-28 08:12:42.637614"], ["email", "michaeljohn82@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$zo.a2Zg1LCLGJwE810Vt..YD9Z8rr1lFkLCMXflqj.wf1iQrK81we"], ["salt", "a_wqxHu9pj6-aKiJBN_9"]]
122
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 83"], ["age", 11], ["created_at", "2024-06-28 08:12:42.701698"], ["updated_at", "2024-06-28 08:12:42.701698"], ["email", "igor83@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$awaDJH4CGfQUIiO1dlowWeMWlGnaoLU0CkUpM5wGNj4EjBxPB7yNe"], ["salt", "hEtbYzicszCsy6HeEkLH"]]
123
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 84"], ["age", 64], ["created_at", "2024-06-28 08:12:42.765545"], ["updated_at", "2024-06-28 08:12:42.765545"], ["email", "igor84@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$bEMXhkh4hZvZrg4auLRJUewuAs0b1ZiYUWITFb8t74JhXUTvvS5jG"], ["salt", "Ep-ZPxenLsyKTyrBGTo8"]]
124
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 85"], ["age", 18], ["created_at", "2024-06-28 08:12:42.829097"], ["updated_at", "2024-06-28 08:12:42.829097"], ["email", "alan85@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$2M3QJxzUxbMhYegLdumrAepzcK5o1MYk6.9AfoKHqizkp9bStZ24y"], ["salt", "ZoN13X6D7fHeGpPDs73z"]]
125
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 86"], ["age", 50], ["created_at", "2024-06-28 08:12:42.892812"], ["updated_at", "2024-06-28 08:12:42.892812"], ["email", "igor86@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$LgjNQO55/eKiVTbN7ZQpXefI26oYhs/45dXhiP3g5sqzoCNc7Mfka"], ["salt", "4HCSofYRs5Lf1wHc9iRd"]]
126
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 87"], ["age", 23], ["created_at", "2024-06-28 08:12:42.956892"], ["updated_at", "2024-06-28 08:12:42.956892"], ["email", "kris87@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$fEbJfaEhay5/yhdzfupVMecH5SwvbBttayuo2NTsPI2MmP8VefTD2"], ["salt", "daxH_zcsfd1fCMEqgjqF"]]
127
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 88"], ["age", 53], ["created_at", "2024-06-28 08:12:43.020849"], ["updated_at", "2024-06-28 08:12:43.020849"], ["email", "igor88@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$XLC0vfiV/FzZ5asDW.nF4./4gELIdQzli3dyz.Z35JtqTW38sBdRG"], ["salt", "yHDqaP_g8toGzewTsL23"]]
128
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 89"], ["age", 2], ["created_at", "2024-06-28 08:12:43.084376"], ["updated_at", "2024-06-28 08:12:43.084376"], ["email", "alan89@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$3l/KVat3IzWec/b6MM3k0e/z1hRpTNoyXnmJhM5j82bBuim2XLSFq"], ["salt", "kUFT-espoCF9ToAsMJui"]]
129
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 90"], ["age", 40], ["created_at", "2024-06-28 08:12:43.147813"], ["updated_at", "2024-06-28 08:12:43.147813"], ["email", "stan90@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$zpN9hhlESBIC/hgPUME5quE2UDUbWjb0wENkkW5j51EjEOmosWXBq"], ["salt", "_CNo4D5sxz2xCzxza6Ts"]]
130
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 91"], ["age", 93], ["created_at", "2024-06-28 08:12:43.212037"], ["updated_at", "2024-06-28 08:12:43.212037"], ["email", "alan91@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$TJOZcEFG42N5WMaVaAXlC.lopD2I3kiO7vblxfgHYkZe7JwNhJm8S"], ["salt", "wfczAjsKXqvwvJGNxhdY"]]
131
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 92"], ["age", 6], ["created_at", "2024-06-28 08:12:43.276000"], ["updated_at", "2024-06-28 08:12:43.276000"], ["email", "stan92@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$TChTzIiBGnlhLG7iApdHX..X8cbop64ETm4zqlOvEr24MXoULjhyK"], ["salt", "gQc5sBp7j1fj7Hf3F7S_"]]
132
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 93"], ["age", 5], ["created_at", "2024-06-28 08:12:43.339433"], ["updated_at", "2024-06-28 08:12:43.339433"], ["email", "bob93@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$wy8crIy.bQll4dd2g.qEM.21cfKGNloddGf8M5Hcu5dwSTx3nLm6W"], ["salt", "Tu6wGb7pHE-hkBEwanwv"]]
133
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 94"], ["age", 2], ["created_at", "2024-06-28 08:12:43.402568"], ["updated_at", "2024-06-28 08:12:43.402568"], ["email", "bob94@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$kgx03rUAdARU9hz8Eav59.QjghMpYGqL0tdKOUW0U/wfHQrbTGVf6"], ["salt", "9w4TKy1DvRxtj2uf6EDL"]]
134
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 95"], ["age", 10], ["created_at", "2024-06-28 08:12:43.468719"], ["updated_at", "2024-06-28 08:12:43.468719"], ["email", "alan95@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$2nUjS6qcK3ErI0Ei9wI/.u8KYHki9KTApNqbO7FM2rpp0zlCKHvFG"], ["salt", "WunHQEzfEGG6SxsW4ang"]]
135
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 96"], ["age", 7], ["created_at", "2024-06-28 08:12:43.539615"], ["updated_at", "2024-06-28 08:12:43.539615"], ["email", "alan96@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$i5QFfKaOe89RjH8KdBmL/.nhIw4St7iUkNfBbbME0zFyrDds/5Ybu"], ["salt", "xHy3JSDB9xzpQLEeHyEq"]]
136
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 97"], ["age", 5], ["created_at", "2024-06-28 08:12:43.602907"], ["updated_at", "2024-06-28 08:12:43.602907"], ["email", "igor97@gmail.com"], ["role", "moderator"], ["crypted_password", "$2a$10$kS3f.nmBM5uKedrjXd0qN.iIWs1Fbplu9wTh6OR8rw13Gt//vKt8S"], ["salt", "QQaBZ1zxiz1P6NiLssox"]]
137
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 98"], ["age", 15], ["created_at", "2024-06-28 08:12:43.666498"], ["updated_at", "2024-06-28 08:12:43.666498"], ["email", "alan98@gmail.com"], ["role", "user"], ["crypted_password", "$2a$10$.gS8vV9Jl1Eg6O7Z9HNEHudjQlcCA9RVxEp37FKl0Ju1KIvBL5UBa"], ["salt", "hkJ3Mbd_p7h7jNn4Ksjx"]]
138
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 99"], ["age", 1], ["created_at", "2024-06-28 08:12:43.730822"], ["updated_at", "2024-06-28 08:12:43.730822"], ["email", "igor99@gmail.com"], ["role", "admin"], ["crypted_password", "$2a$10$d6bWBT4Jmtn1kr2JNnBSu.G7y/kF6Ox6AAeNuVKxQfyT/.5f1fcem"], ["salt", "T4sa_tqJGdMPieQkKmD3"]]
139
+ ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20220827040518"]]
140
+ TRANSACTION (2.8ms) commit transaction
141
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
142
+ TRANSACTION (0.0ms) begin transaction
143
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2024-06-28 08:12:43.741923"], ["updated_at", "2024-06-28 08:12:43.741923"]]
144
+ TRANSACTION (0.8ms) commit transaction
145
+  (0.0ms) SELECT sqlite_version(*)
146
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
147
+  (1.3ms) SELECT sqlite_version(*)
148
+ ActiveRecord::InternalMetadata Pluck (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
149
+  (0.1ms) SELECT sqlite_version(*)
150
+ ActiveRecord::SchemaMigration Pluck (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
151
+ TRANSACTION (0.1ms) begin transaction
152
+ ---------------------------------------------------------------------
153
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
154
+ ---------------------------------------------------------------------
155
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
156
+ User Create (3.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "test"], ["age", nil], ["created_at", "2024-06-28 08:21:47.715387"], ["updated_at", "2024-06-28 08:21:47.715387"], ["email", "test@test.com"], ["encrypted_password", ""], ["reset_password_token", nil], ["reset_password_sent_at", nil], ["remember_created_at", nil], ["sign_in_count", 0], ["current_sign_in_at", nil], ["last_sign_in_at", nil], ["current_sign_in_ip", nil], ["last_sign_in_ip", nil], ["role", "user"], ["crypted_password", "$2a$10$VtIMkkjU1QlMhWt1kAMOEOHIaU3C1djjqH2pcalNC8LXMuhK5q8be"], ["salt", "PXx43yr2kth5CtXsRMny"]]
157
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
158
+ Started GET "/about" for 127.0.0.1 at 2024-06-28 11:21:48 +0300
159
+ Processing by HomeController#about as HTML
160
+ Redirected to http://127.0.0.1:49662/
161
+ Filter chain halted as :require_login rendered or redirected
162
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms | Allocations: 1739)
163
+ Started GET "/" for 127.0.0.1 at 2024-06-28 11:21:48 +0300
164
+ Processing by HomeController#index as HTML
165
+ Rendering layout layouts/application.html.erb
166
+ Rendering home/index.html.erb within layouts/application
167
+ Rendered home/index.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1293)
168
+ Rendered shared/_header.html.erb (Duration: 0.6ms | Allocations: 117)
169
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.4ms | Allocations: 137)
170
+ User Load (0.7ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
171
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 68.5ms | Allocations: 56779)
172
+ Rendered shared/_footer.html.erb (Duration: 69.8ms | Allocations: 57287)
173
+ Rendered layout layouts/application.html.erb (Duration: 74.2ms | Allocations: 59223)
174
+ Completed 200 OK in 82ms (Views: 77.7ms | ActiveRecord: 0.7ms | Allocations: 61613)
175
+ Started GET "/any_login/any_login/js" for 127.0.0.1 at 2024-06-28 11:21:48 +0300
176
+ Started GET "/any_login/any_login/css" for 127.0.0.1 at 2024-06-28 11:21:48 +0300
177
+ Processing by AnyLogin::ApplicationController#js as */*
178
+ Processing by AnyLogin::ApplicationController#css as HTML
179
+ Sent file /Users/admin/projects/any_login/app/assets/javascripts/any_login/application.js (0.3ms)
180
+ Completed 200 OK in 5ms (ActiveRecord: 0.0ms | Allocations: 718)
181
+ Sent file /Users/admin/projects/any_login/app/assets/stylesheets/any_login/application.css (0.3ms)
182
+ Completed 200 OK in 6ms (ActiveRecord: 0.0ms | Allocations: 906)
183
+ TRANSACTION (0.6ms) rollback transaction
184
+ TRANSACTION (0.0ms) begin transaction
185
+ -----------------------------------------------------------------------------------
186
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
187
+ -----------------------------------------------------------------------------------
188
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
189
+ User Create (0.6ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "test"], ["age", nil], ["created_at", "2024-06-28 08:21:49.265379"], ["updated_at", "2024-06-28 08:21:49.265379"], ["email", "test@test.com"], ["encrypted_password", ""], ["reset_password_token", nil], ["reset_password_sent_at", nil], ["remember_created_at", nil], ["sign_in_count", 0], ["current_sign_in_at", nil], ["last_sign_in_at", nil], ["current_sign_in_ip", nil], ["last_sign_in_ip", nil], ["role", "user"], ["crypted_password", "$2a$10$6OQ4mJ8TYWnl9FgN51.L7eFw1UL/9LtQZDKPRWnyzxMNX1UXQckkq"], ["salt", "MgNpmieUpkySNKYpHXd_"]]
190
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
191
+ Started GET "/" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
192
+ Processing by HomeController#index as HTML
193
+ Rendering layout layouts/application.html.erb
194
+ Rendering home/index.html.erb within layouts/application
195
+ Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 153)
196
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
197
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
198
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
199
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.4ms | Allocations: 1154)
200
+ Rendered shared/_footer.html.erb (Duration: 1.6ms | Allocations: 1278)
201
+ Rendered layout layouts/application.html.erb (Duration: 2.5ms | Allocations: 1574)
202
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms | Allocations: 1827)
203
+ Started GET "/any_login/any_login/css" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
204
+ Processing by AnyLogin::ApplicationController#css as HTML
205
+ Started GET "/any_login/any_login/js" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
206
+ Processing by AnyLogin::ApplicationController#js as */*
207
+ Sent file /Users/admin/projects/any_login/app/assets/stylesheets/any_login/application.css (1.0ms)
208
+ Completed 200 OK in 2ms (ActiveRecord: 0.0ms | Allocations: 1018)
209
+ Sent file /Users/admin/projects/any_login/app/assets/javascripts/any_login/application.js (0.3ms)
210
+ Completed 200 OK in 1ms (ActiveRecord: 0.0ms | Allocations: 497)
211
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
212
+ Processing by AnyLogin::ApplicationController#any_login as HTML
213
+ Parameters: {"selected_id"=>"10", "id"=>""}
214
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
215
+ Redirected to http://127.0.0.1:49662/
216
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms | Allocations: 955)
217
+ Started GET "/" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
218
+ Processing by HomeController#index as HTML
219
+ Rendering layout layouts/application.html.erb
220
+ Rendering home/index.html.erb within layouts/application
221
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
222
+ Rendered home/index.html.erb within layouts/application (Duration: 1.2ms | Allocations: 522)
223
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
224
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
225
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
226
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
227
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.6ms | Allocations: 1533)
228
+ Rendered shared/_footer.html.erb (Duration: 2.9ms | Allocations: 1675)
229
+ Rendered layout layouts/application.html.erb (Duration: 4.5ms | Allocations: 2340)
230
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2592)
231
+ Started GET "/any_login/any_login/js" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
232
+ Processing by AnyLogin::ApplicationController#js as */*
233
+ Sent file /Users/admin/projects/any_login/app/assets/javascripts/any_login/application.js (0.2ms)
234
+ Completed 200 OK in 1ms (ActiveRecord: 0.0ms | Allocations: 361)
235
+ Started GET "/any_login/any_login/css" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
236
+ Processing by AnyLogin::ApplicationController#css as HTML
237
+ Sent file /Users/admin/projects/any_login/app/assets/stylesheets/any_login/application.css (0.1ms)
238
+ Completed 200 OK in 1ms (ActiveRecord: 0.0ms | Allocations: 330)
239
+ Started GET "/about" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
240
+ Processing by HomeController#about as HTML
241
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
242
+ Rendering layout layouts/application.html.erb
243
+ Rendering home/about.html.erb within layouts/application
244
+ Rendered home/about.html.erb within layouts/application (Duration: 0.5ms | Allocations: 97)
245
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
246
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
247
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
248
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
249
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.2ms | Allocations: 1283)
250
+ Rendered shared/_footer.html.erb (Duration: 2.4ms | Allocations: 1413)
251
+ Rendered layout layouts/application.html.erb (Duration: 3.2ms | Allocations: 1645)
252
+ Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.1ms | Allocations: 2211)
253
+ Started GET "/any_login/any_login/js" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
254
+ Processing by AnyLogin::ApplicationController#js as */*
255
+ Sent file /Users/admin/projects/any_login/app/assets/javascripts/any_login/application.js (0.2ms)
256
+ Started GET "/any_login/any_login/css" for 127.0.0.1 at 2024-06-28 11:21:49 +0300
257
+ Completed 200 OK in 1ms (ActiveRecord: 0.0ms | Allocations: 462)
258
+ Processing by AnyLogin::ApplicationController#css as HTML
259
+ Sent file /Users/admin/projects/any_login/app/assets/stylesheets/any_login/application.css (1.2ms)
260
+ Completed 200 OK in 2ms (ActiveRecord: 0.0ms | Allocations: 624)
261
+ TRANSACTION (0.4ms) rollback transaction
262
+  (1.6ms) SELECT sqlite_version(*)
263
+ ActiveRecord::InternalMetadata Pluck (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
264
+  (0.1ms) SELECT sqlite_version(*)
265
+ ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
266
+ TRANSACTION (0.1ms) begin transaction
267
+ ---------------------------------------------------------------------
268
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
269
+ ---------------------------------------------------------------------
270
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
271
+ User Create (3.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "test"], ["age", nil], ["created_at", "2024-06-28 09:03:21.696332"], ["updated_at", "2024-06-28 09:03:21.696332"], ["email", "test@test.com"], ["encrypted_password", ""], ["reset_password_token", nil], ["reset_password_sent_at", nil], ["remember_created_at", nil], ["sign_in_count", 0], ["current_sign_in_at", nil], ["last_sign_in_at", nil], ["current_sign_in_ip", nil], ["last_sign_in_ip", nil], ["role", "user"], ["crypted_password", "$2a$10$DIrPaotUqh0SlbVeO.yjuua/v1ckhS3KfAGn4cNk7Kw9.GLbOYBO6"], ["salt", "a22yMm4bJmWuZ_YiGq8b"]]
272
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
273
+ Started GET "/about" for 127.0.0.1 at 2024-06-28 12:03:22 +0300
274
+ Processing by HomeController#about as HTML
275
+ Redirected to http://127.0.0.1:56218/
276
+ Filter chain halted as :require_login rendered or redirected
277
+ Completed 302 Found in 8ms (ActiveRecord: 0.0ms | Allocations: 1739)
278
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:03:22 +0300
279
+ Processing by HomeController#index as HTML
280
+ Rendering layout layouts/application.html.erb
281
+ Rendering home/index.html.erb within layouts/application
282
+ Rendered home/index.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1320)
283
+ Rendered shared/_header.html.erb (Duration: 0.4ms | Allocations: 117)
284
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.2ms | Allocations: 122)
285
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.2ms | Allocations: 174)
286
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.4ms | Allocations: 138)
287
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
288
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 37.7ms | Allocations: 57108)
289
+ Rendered shared/_footer.html.erb (Duration: 38.9ms | Allocations: 57616)
290
+ Rendered layout layouts/application.html.erb (Duration: 43.1ms | Allocations: 59579)
291
+ Completed 200 OK in 51ms (Views: 47.3ms | ActiveRecord: 0.5ms | Allocations: 61968)
292
+ TRANSACTION (0.5ms) rollback transaction
293
+ TRANSACTION (0.0ms) begin transaction
294
+ -----------------------------------------------------------------------------------
295
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
296
+ -----------------------------------------------------------------------------------
297
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
298
+ User Create (0.7ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "test"], ["age", nil], ["created_at", "2024-06-28 09:03:23.260652"], ["updated_at", "2024-06-28 09:03:23.260652"], ["email", "test@test.com"], ["encrypted_password", ""], ["reset_password_token", nil], ["reset_password_sent_at", nil], ["remember_created_at", nil], ["sign_in_count", 0], ["current_sign_in_at", nil], ["last_sign_in_at", nil], ["current_sign_in_ip", nil], ["last_sign_in_ip", nil], ["role", "user"], ["crypted_password", "$2a$10$T5aGH75KgqShXpOFmSdtaeX/JlS11CNMN2ZlMP4J.wMTeq0Tvuq/W"], ["salt", "8nsRy86MGzPwbaKYEXiz"]]
299
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
300
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:03:23 +0300
301
+ Processing by HomeController#index as HTML
302
+ Rendering layout layouts/application.html.erb
303
+ Rendering home/index.html.erb within layouts/application
304
+ Rendered home/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 139)
305
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
306
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
307
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
308
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
309
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
310
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.9ms | Allocations: 1099)
311
+ Rendered shared/_footer.html.erb (Duration: 2.1ms | Allocations: 1217)
312
+ Rendered layout layouts/application.html.erb (Duration: 2.7ms | Allocations: 1496)
313
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.2ms | Allocations: 1745)
314
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2024-06-28 12:03:23 +0300
315
+ Processing by AnyLogin::ApplicationController#any_login as HTML
316
+ Parameters: {"selected_id"=>"10", "id"=>""}
317
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
318
+ Redirected to http://127.0.0.1:56218/
319
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms | Allocations: 1014)
320
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:03:23 +0300
321
+ Processing by HomeController#index as HTML
322
+ Rendering layout layouts/application.html.erb
323
+ Rendering home/index.html.erb within layouts/application
324
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
325
+ Rendered home/index.html.erb within layouts/application (Duration: 1.1ms | Allocations: 522)
326
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
327
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
328
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
329
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
330
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
331
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
332
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.6ms | Allocations: 1500)
333
+ Rendered shared/_footer.html.erb (Duration: 2.9ms | Allocations: 1642)
334
+ Rendered layout layouts/application.html.erb (Duration: 4.3ms | Allocations: 2306)
335
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2556)
336
+ Started GET "/about" for 127.0.0.1 at 2024-06-28 12:03:23 +0300
337
+ Processing by HomeController#about as HTML
338
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
339
+ Rendering layout layouts/application.html.erb
340
+ Rendering home/about.html.erb within layouts/application
341
+ Rendered home/about.html.erb within layouts/application (Duration: 0.6ms | Allocations: 94)
342
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
343
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
344
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
345
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
346
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
347
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
348
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.5ms | Allocations: 1250)
349
+ Rendered shared/_footer.html.erb (Duration: 2.8ms | Allocations: 1380)
350
+ Rendered layout layouts/application.html.erb (Duration: 3.9ms | Allocations: 1608)
351
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms | Allocations: 2136)
352
+ TRANSACTION (0.6ms) rollback transaction
353
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "schema_sha1"]]
354
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
355
+ TRANSACTION (1.1ms) begin transaction
356
+ ---------------------------------------------------------------------
357
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
358
+ ---------------------------------------------------------------------
359
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
360
+ User Create (3.4ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2024-06-28 09:16:32.524472"], ["updated_at", "2024-06-28 09:16:32.524472"], ["email", "test@test.com"], ["encrypted_password", ""], ["reset_password_token", nil], ["reset_password_sent_at", nil], ["remember_created_at", nil], ["sign_in_count", 0], ["current_sign_in_at", nil], ["last_sign_in_at", nil], ["current_sign_in_ip", nil], ["last_sign_in_ip", nil], ["role", "user"], ["crypted_password", "$2a$10$SHlGs2AK4guVNDs1SpL7rePC27uz5pH9NLuCN7zpipcOMjf7GTp02"], ["salt", "xDEGyEthK__H45x-mdse"]]
361
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
362
+ Started GET "/about" for 127.0.0.1 at 2024-06-28 12:16:33 +0300
363
+ Processing by HomeController#about as HTML
364
+ Redirected to http://127.0.0.1:61149/
365
+ Filter chain halted as :require_login rendered or redirected
366
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms | Allocations: 1653)
367
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:16:33 +0300
368
+ Processing by HomeController#index as HTML
369
+ Rendering layout layouts/application.html.erb
370
+ Rendering home/index.html.erb within layouts/application
371
+ Rendered home/index.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1530)
372
+ Rendered shared/_header.html.erb (Duration: 0.2ms | Allocations: 109)
373
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.2ms | Allocations: 114)
374
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.2ms | Allocations: 169)
375
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.3ms | Allocations: 132)
376
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
377
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 21.9ms | Allocations: 4315)
378
+ Rendered shared/_footer.html.erb (Duration: 23.9ms | Allocations: 4870)
379
+ Rendered layout layouts/application.html.erb (Duration: 37.4ms | Allocations: 7056)
380
+ Completed 200 OK in 61ms (Views: 44.7ms | ActiveRecord: 0.3ms | Allocations: 13011)
381
+ TRANSACTION (0.2ms) rollback transaction
382
+ TRANSACTION (0.1ms) begin transaction
383
+ -----------------------------------------------------------------------------------
384
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
385
+ -----------------------------------------------------------------------------------
386
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
387
+ User Create (0.6ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "sign_in_count", "current_sign_in_at", "last_sign_in_at", "current_sign_in_ip", "last_sign_in_ip", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2024-06-28 09:16:34.458189"], ["updated_at", "2024-06-28 09:16:34.458189"], ["email", "test@test.com"], ["encrypted_password", ""], ["reset_password_token", nil], ["reset_password_sent_at", nil], ["remember_created_at", nil], ["sign_in_count", 0], ["current_sign_in_at", nil], ["last_sign_in_at", nil], ["current_sign_in_ip", nil], ["last_sign_in_ip", nil], ["role", "user"], ["crypted_password", "$2a$10$BGL/WVdx9mPWjNZ01ErTbeXcwLdMsLpL8qruPUvi1Kml.0AQZ3G6q"], ["salt", "6jiejFxEw2PC6KFaLd1c"]]
388
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
389
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:16:34 +0300
390
+ Processing by HomeController#index as HTML
391
+ Rendering layout layouts/application.html.erb
392
+ Rendering home/index.html.erb within layouts/application
393
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 137)
394
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 9)
395
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 8)
396
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 8)
397
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 10)
398
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
399
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.4ms | Allocations: 863)
400
+ Rendered shared/_footer.html.erb (Duration: 1.6ms | Allocations: 970)
401
+ Rendered layout layouts/application.html.erb (Duration: 2.5ms | Allocations: 1285)
402
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.1ms | Allocations: 1526)
403
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2024-06-28 12:16:34 +0300
404
+ Processing by AnyLogin::ApplicationController#any_login as HTML
405
+ Parameters: {"selected_id"=>"10", "id"=>""}
406
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
407
+ Redirected to http://127.0.0.1:61149/
408
+ Completed 302 Found in 5ms (ActiveRecord: 0.2ms | Allocations: 1581)
409
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:16:34 +0300
410
+ Processing by HomeController#index as HTML
411
+ Rendering layout layouts/application.html.erb
412
+ Rendering home/index.html.erb within layouts/application
413
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
414
+ Rendered home/index.html.erb within layouts/application (Duration: 2.6ms | Allocations: 509)
415
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 10)
416
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 8)
417
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 8)
418
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 10)
419
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
420
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
421
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.9ms | Allocations: 1413)
422
+ Rendered shared/_footer.html.erb (Duration: 4.2ms | Allocations: 1535)
423
+ Rendered layout layouts/application.html.erb (Duration: 7.3ms | Allocations: 2225)
424
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.2ms | Allocations: 2477)
425
+ Started GET "/about" for 127.0.0.1 at 2024-06-28 12:16:34 +0300
426
+ Processing by HomeController#about as HTML
427
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
428
+ Rendering layout layouts/application.html.erb
429
+ Rendering home/about.html.erb within layouts/application
430
+ Rendered home/about.html.erb within layouts/application (Duration: 0.4ms | Allocations: 89)
431
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 9)
432
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 8)
433
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 8)
434
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 10)
435
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
436
+ CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
437
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.2ms | Allocations: 1052)
438
+ Rendered shared/_footer.html.erb (Duration: 3.6ms | Allocations: 1162)
439
+ Rendered layout layouts/application.html.erb (Duration: 4.6ms | Allocations: 1423)
440
+ Completed 200 OK in 10ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2004)
441
+ TRANSACTION (0.1ms) rollback transaction
442
+  (1.3ms) SELECT sqlite_version(*)
443
+  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
444
+  (0.1ms) SELECT sqlite_version(*)
445
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
446
+ TRANSACTION (0.1ms) begin transaction
447
+ ---------------------------------------------------------------------
448
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
449
+ ---------------------------------------------------------------------
450
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
451
+ User Create (1.0ms) INSERT INTO "users" ("name", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "test"], ["created_at", "2024-06-28 09:18:36.679841"], ["updated_at", "2024-06-28 09:18:36.679841"], ["email", "test@test.com"], ["role", "user"], ["crypted_password", "$2a$10$hZS07CKK0AkJAawM227r8.KqD8rHFYi2ODiun1ZzpH8.Lm2oBXidi"], ["salt", "jqdYxr5Eyc5FuQM3HLbP"]]
452
+ TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1
453
+ Started GET "/about" for 127.0.0.1 at 2024-06-28 12:18:38 +0300
454
+ Processing by HomeController#about as HTML
455
+ Redirected to http://127.0.0.1:61731/
456
+ Filter chain halted as :require_login rendered or redirected
457
+ Completed 302 Found in 9ms (ActiveRecord: 0.0ms | Allocations: 1701)
458
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:18:38 +0300
459
+ Processing by HomeController#index as HTML
460
+ Rendering layout layouts/application.html.erb
461
+ Rendering home/index.html.erb within layouts/application
462
+ Rendered home/index.html.erb within layouts/application (Duration: 10.5ms | Allocations: 1295)
463
+ Rendered shared/_header.html.erb (Duration: 7.2ms | Allocations: 115)
464
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.3ms | Allocations: 120)
465
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.3ms | Allocations: 175)
466
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.4ms | Allocations: 135)
467
+ User Load (2.7ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
468
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 171.7ms | Allocations: 57573)
469
+ Rendered shared/_footer.html.erb (Duration: 177.0ms | Allocations: 58230)
470
+ Rendered layout layouts/application.html.erb (Duration: 202.7ms | Allocations: 60329)
471
+ Completed 200 OK in 215ms (Views: 209.5ms | ActiveRecord: 2.7ms | Allocations: 62969)
472
+ TRANSACTION (0.1ms) rollback transaction
473
+ TRANSACTION (0.0ms) begin transaction
474
+ -----------------------------------------------------------------------------------
475
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
476
+ -----------------------------------------------------------------------------------
477
+ TRANSACTION (0.1ms) SAVEPOINT active_record_1
478
+ User Create (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at", "email", "role", "crypted_password", "salt") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "test"], ["created_at", "2024-06-28 09:18:38.749693"], ["updated_at", "2024-06-28 09:18:38.749693"], ["email", "test@test.com"], ["role", "user"], ["crypted_password", "$2a$10$poSek9Ax9FceoMDTMruUGu99XbdbFI6HxFZIaG4RkclLtWMxkkAS."], ["salt", "YVgHyk9G2PoVExeUPaVd"]]
479
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
480
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:18:38 +0300
481
+ Processing by HomeController#index as HTML
482
+ Rendering layout layouts/application.html.erb
483
+ Rendering home/index.html.erb within layouts/application
484
+ Rendered home/index.html.erb within layouts/application (Duration: 0.2ms | Allocations: 139)
485
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
486
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
487
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
488
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
489
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
490
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.7ms | Allocations: 1140)
491
+ Rendered shared/_footer.html.erb (Duration: 1.9ms | Allocations: 1263)
492
+ Rendered layout layouts/application.html.erb (Duration: 2.5ms | Allocations: 1552)
493
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.1ms | Allocations: 1844)
494
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2024-06-28 12:18:38 +0300
495
+ Processing by AnyLogin::ApplicationController#any_login as HTML
496
+ Parameters: {"selected_id"=>"10", "id"=>""}
497
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
498
+ Redirected to http://127.0.0.1:61731/
499
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms | Allocations: 992)
500
+ Started GET "/" for 127.0.0.1 at 2024-06-28 12:18:38 +0300
501
+ Processing by HomeController#index as HTML
502
+ Rendering layout layouts/application.html.erb
503
+ Rendering home/index.html.erb within layouts/application
504
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
505
+ Rendered home/index.html.erb within layouts/application (Duration: 2.3ms | Allocations: 513)
506
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
507
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.1ms | Allocations: 5)
508
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
509
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.1ms | Allocations: 7)
510
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
511
+ User Load (11.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
512
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 18.1ms | Allocations: 1704)
513
+ Rendered shared/_footer.html.erb (Duration: 27.2ms | Allocations: 1851)
514
+ Rendered layout layouts/application.html.erb (Duration: 30.3ms | Allocations: 2516)
515
+ Completed 200 OK in 31ms (Views: 19.0ms | ActiveRecord: 11.9ms | Allocations: 2809)
516
+ Started GET "/about" for 127.0.0.1 at 2024-06-28 12:18:39 +0300
517
+ Processing by HomeController#about as HTML
518
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
519
+ Rendering layout layouts/application.html.erb
520
+ Rendering home/about.html.erb within layouts/application
521
+ Rendered home/about.html.erb within layouts/application (Duration: 0.8ms | Allocations: 96)
522
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
523
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
524
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
525
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
526
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
527
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
528
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 3.8ms | Allocations: 1431)
529
+ Rendered shared/_footer.html.erb (Duration: 4.2ms | Allocations: 1566)
530
+ Rendered layout layouts/application.html.erb (Duration: 5.9ms | Allocations: 1806)
531
+ Completed 200 OK in 9ms (Views: 6.1ms | ActiveRecord: 0.5ms | Allocations: 2488)
532
+ TRANSACTION (0.1ms) rollback transaction