any_login 1.5.3 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) 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/schema.rb +3 -5
  13. data/test/rails_apps/authlogic/db/test.sqlite3 +0 -0
  14. data/test/rails_apps/authlogic/log/development.log +331 -0
  15. data/test/rails_apps/authlogic/log/test.log +409 -0
  16. data/test/rails_apps/authlogic/tmp/local_secret.txt +1 -0
  17. data/test/rails_apps/clearance/config/environment.rb +1 -0
  18. data/test/rails_apps/clearance/db/development.sqlite3 +0 -0
  19. data/test/rails_apps/clearance/db/schema.rb +10 -12
  20. data/test/rails_apps/clearance/db/test.sqlite3 +0 -0
  21. data/test/rails_apps/clearance/log/development.log +25 -0
  22. data/test/rails_apps/clearance/log/test.log +744 -0
  23. data/test/rails_apps/clearance/tmp/local_secret.txt +1 -0
  24. data/test/rails_apps/devise/db/development.sqlite3 +0 -0
  25. data/test/rails_apps/devise/db/schema.rb +3 -5
  26. data/test/rails_apps/devise/db/test.sqlite3 +0 -0
  27. data/test/rails_apps/devise/log/development.log +598 -0
  28. data/test/rails_apps/devise/log/test.log +760 -0
  29. data/test/rails_apps/devise/tmp/local_secret.txt +1 -0
  30. data/test/rails_apps/sorcery/db/development.sqlite3 +0 -0
  31. data/test/rails_apps/sorcery/db/schema.rb +3 -5
  32. data/test/rails_apps/sorcery/db/test.sqlite3 +0 -0
  33. data/test/rails_apps/sorcery/log/development.log +24 -0
  34. data/test/rails_apps/sorcery/log/test.log +113 -0
  35. data/test/rails_apps/sorcery/tmp/local_secret.txt +1 -0
  36. data/test/test_helper_common.rb +2 -1
  37. metadata +76 -10
  38. data/app/assets/javascripts/any_login/application.js +0 -23
@@ -0,0 +1,744 @@
1
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
2
+  (0.1ms) 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)
3
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
4
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
5
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ('environment', 'test', '2025-05-28 19:12:33.547874', '2025-05-28 19:12:33.547875') RETURNING "key"
6
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7
+ Migrating to CreateUsers (20150907190739)
8
+ TRANSACTION (0.0ms) BEGIN immediate TRANSACTION
9
+  (0.2ms) 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)
10
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20150907190739') RETURNING "version"
11
+ TRANSACTION (0.0ms) COMMIT TRANSACTION
12
+ Migrating to AddDeviseToUsers (20150907190846)
13
+ TRANSACTION (1.0ms) BEGIN immediate TRANSACTION
14
+  (3.2ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
15
+  (0.2ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
16
+  (0.0ms) ALTER TABLE "users" ADD "reset_password_token" varchar
17
+  (0.0ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
18
+  (0.0ms) ALTER TABLE "users" ADD "remember_created_at" datetime
19
+  (0.0ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
20
+  (0.0ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
21
+  (0.0ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
22
+  (0.0ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
23
+  (0.0ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
24
+  (0.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
25
+  (0.0ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
26
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20150907190846') RETURNING "version"
27
+ TRANSACTION (0.0ms) COMMIT TRANSACTION
28
+ Migrating to PopulateTestUsers (20150909210357)
29
+ TRANSACTION (0.0ms) BEGIN immediate TRANSACTION
30
+  (0.1ms) ALTER TABLE "users" ADD "role" varchar
31
+  (0.0ms) ALTER TABLE "users" ADD "remember_token" varchar(128)
32
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan0@gmail.com"], ["LIMIT", 1]]
33
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 0"], ["age", 28], ["created_at", "2025-05-28 19:12:33.570863"], ["updated_at", "2025-05-28 19:12:33.570863"], ["email", "stan0@gmail.com"], ["encrypted_password", "$2a$04$.G0LD/JozLB5XJabseVO.upUOabSXD8NExvpqk1yn0Egd/iSy3P3u"], ["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", "moderator"], ["remember_token", "6f99aa135689bb2c5e0f4d9c7d3af58f60900a96"]]
34
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob1@gmail.com"], ["LIMIT", 1]]
35
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 1"], ["age", 67], ["created_at", "2025-05-28 19:12:33.572630"], ["updated_at", "2025-05-28 19:12:33.572630"], ["email", "bob1@gmail.com"], ["encrypted_password", "$2a$04$YwBbEf5hp7ArpTBT062HPOCAgu2Kfh76wiKaR5nvwPpNqO06yBsDy"], ["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", "admin"], ["remember_token", "bc644a0b70f78282be7c336c033b09763c5f7a5f"]]
36
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan2@gmail.com"], ["LIMIT", 1]]
37
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 2"], ["age", 75], ["created_at", "2025-05-28 19:12:33.574032"], ["updated_at", "2025-05-28 19:12:33.574032"], ["email", "alan2@gmail.com"], ["encrypted_password", "$2a$04$P0JOTnJTYUFQ64Lot7Z7..wL2RdFmylaIAVuDxgDCK9Sko95AesQm"], ["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", "admin"], ["remember_token", "e5d3a4dc4f4869d8872a5db539202eac6a30062a"]]
38
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn3@gmail.com"], ["LIMIT", 1]]
39
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 3"], ["age", 10], ["created_at", "2025-05-28 19:12:33.576483"], ["updated_at", "2025-05-28 19:12:33.576483"], ["email", "michaeljohn3@gmail.com"], ["encrypted_password", "$2a$04$94TdeUISUu.a7SIRQXW4xOaa79.hIWnWU84jXOA3AFXjxin7gzzvC"], ["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", "admin"], ["remember_token", "74b91825d24d33de174634d97bb30e574ba27381"]]
40
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn4@gmail.com"], ["LIMIT", 1]]
41
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 4"], ["age", 25], ["created_at", "2025-05-28 19:12:33.582608"], ["updated_at", "2025-05-28 19:12:33.582608"], ["email", "michaeljohn4@gmail.com"], ["encrypted_password", "$2a$04$Wcs3PmxWjFAwWVwvhQ0/sev9G1AI19kuW/l2mFsA6CQZA8QRn01n2"], ["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"], ["remember_token", "5b61470c2a90d62c8c903247df31d42188b4a75c"]]
42
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris5@gmail.com"], ["LIMIT", 1]]
43
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 5"], ["age", 7], ["created_at", "2025-05-28 19:12:33.584649"], ["updated_at", "2025-05-28 19:12:33.584649"], ["email", "kris5@gmail.com"], ["encrypted_password", "$2a$04$f0bkJft..GT2Tc/V3xJc6.8HiuRRYzkNcC21gptSmYMc/8/sIcMji"], ["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", "moderator"], ["remember_token", "d38798f4f2d6ee895f8937e3f66dd680dc5a4204"]]
44
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan6@gmail.com"], ["LIMIT", 1]]
45
+ User Create (0.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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 6"], ["age", 38], ["created_at", "2025-05-28 19:12:33.586521"], ["updated_at", "2025-05-28 19:12:33.586521"], ["email", "stan6@gmail.com"], ["encrypted_password", "$2a$04$bhI4SpmNpulNCE8uY5T4cecODdPdnxPotDasC5gH2xK3LroOV1AsS"], ["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"], ["remember_token", "045c4e8b6309179c4d9a12784c8d6b945d5b8880"]]
46
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor7@gmail.com"], ["LIMIT", 1]]
47
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 7"], ["age", 6], ["created_at", "2025-05-28 19:12:33.592131"], ["updated_at", "2025-05-28 19:12:33.592131"], ["email", "igor7@gmail.com"], ["encrypted_password", "$2a$04$NZZG0fET3FmdTMdUIwWCluOeVaII73jOJ0.VbUnNUqFkjpkHvGaE."], ["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", "admin"], ["remember_token", "74559b4fb25418b19ed766c1ad43d0c7d792fef2"]]
48
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan8@gmail.com"], ["LIMIT", 1]]
49
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 8"], ["age", 17], ["created_at", "2025-05-28 19:12:33.595966"], ["updated_at", "2025-05-28 19:12:33.595966"], ["email", "alan8@gmail.com"], ["encrypted_password", "$2a$04$VFH4CQm7a8KIHBb8fhj8WOhPmgSAwRhlZhvrI56ZwdT1q9XLn2eWi"], ["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", "admin"], ["remember_token", "63f97f820d8a723ca7cd3d1253fbfaa52b94d64a"]]
50
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn9@gmail.com"], ["LIMIT", 1]]
51
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 9"], ["age", 3], ["created_at", "2025-05-28 19:12:33.597373"], ["updated_at", "2025-05-28 19:12:33.597373"], ["email", "michaeljohn9@gmail.com"], ["encrypted_password", "$2a$04$4EFSD/.F3bDq1pDeN7BXPuvRZj0TdionX8lLoQ6hJ9W.wbU7wXtgS"], ["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"], ["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"]]
52
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn10@gmail.com"], ["LIMIT", 1]]
53
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 10"], ["age", 97], ["created_at", "2025-05-28 19:12:33.598615"], ["updated_at", "2025-05-28 19:12:33.598615"], ["email", "michaeljohn10@gmail.com"], ["encrypted_password", "$2a$04$B3V5V1CTAXIk2Sgr2p4wpullRjLoasGRWJ/Pstflkxe.Se8ju5dJ2"], ["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", "admin"], ["remember_token", "86f1fb8d981329f1d5b21b12858654de341f3401"]]
54
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob11@gmail.com"], ["LIMIT", 1]]
55
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 11"], ["age", 22], ["created_at", "2025-05-28 19:12:33.600278"], ["updated_at", "2025-05-28 19:12:33.600278"], ["email", "bob11@gmail.com"], ["encrypted_password", "$2a$04$cMjOGUdWLckpuNph.BQE0OR.J.3YrwFgm4F73OjGVZ2wP4JLkwy5."], ["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"], ["remember_token", "405db481b431148c958f4e65a7b7bc6e603163ad"]]
56
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn12@gmail.com"], ["LIMIT", 1]]
57
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 12"], ["age", 45], ["created_at", "2025-05-28 19:12:33.602801"], ["updated_at", "2025-05-28 19:12:33.602801"], ["email", "michaeljohn12@gmail.com"], ["encrypted_password", "$2a$04$aiCVsmOi1B6OIV7nkZ4azejrkKfQ.slfy1ZVWqI6xc7/LnzC7KTqi"], ["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"], ["remember_token", "764cf18afbdeaa7e226861119d0e4a29ff0f962e"]]
58
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris13@gmail.com"], ["LIMIT", 1]]
59
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 13"], ["age", 31], ["created_at", "2025-05-28 19:12:33.610993"], ["updated_at", "2025-05-28 19:12:33.610993"], ["email", "kris13@gmail.com"], ["encrypted_password", "$2a$04$RFyiL4JA.AHiF5DkWvU4ce9ZhkJZnqcVvdb8AP9NykSYNMqvJqHS2"], ["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", "moderator"], ["remember_token", "ee94814d8441fcccf9c40781fbecf79036bce4a5"]]
60
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob14@gmail.com"], ["LIMIT", 1]]
61
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 14"], ["age", 43], ["created_at", "2025-05-28 19:12:33.612573"], ["updated_at", "2025-05-28 19:12:33.612573"], ["email", "bob14@gmail.com"], ["encrypted_password", "$2a$04$mNlXbaGjUmhKNkO/qS3GYetjiDY1rSoLV8eyLg3LPiE4xkzXpqr46"], ["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"], ["remember_token", "fe08fe7105e476919fe10ecf4f81d9c027acacf9"]]
62
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan15@gmail.com"], ["LIMIT", 1]]
63
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 15"], ["age", 35], ["created_at", "2025-05-28 19:12:33.614146"], ["updated_at", "2025-05-28 19:12:33.614146"], ["email", "stan15@gmail.com"], ["encrypted_password", "$2a$04$n/66Ot../UiYzwdRMyPki.JG7AnMTY8u/gUdOOE/BeuxlHa.SKMI6"], ["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", "moderator"], ["remember_token", "33847164a4d72e295c9df5d87f368ed8b13eeef5"]]
64
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan16@gmail.com"], ["LIMIT", 1]]
65
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 16"], ["age", 11], ["created_at", "2025-05-28 19:12:33.615370"], ["updated_at", "2025-05-28 19:12:33.615370"], ["email", "alan16@gmail.com"], ["encrypted_password", "$2a$04$Ghy2pxDvcCAYwpfPMU65oeuVbaeRQpvIrwv7KtaVI1kaqMhCKQdHC"], ["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", "moderator"], ["remember_token", "9b31faf0d3ddb9c1de375939d8f38fade895a1a4"]]
66
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan17@gmail.com"], ["LIMIT", 1]]
67
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 17"], ["age", 97], ["created_at", "2025-05-28 19:12:33.617195"], ["updated_at", "2025-05-28 19:12:33.617195"], ["email", "stan17@gmail.com"], ["encrypted_password", "$2a$04$8RrttknrePV1iRcyEUK9xe14z.rOWnTp8xCtGNd2W41EI6S4bqaG."], ["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", "moderator"], ["remember_token", "a8c495994b787bd150373ef9ebc144a888078863"]]
68
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn18@gmail.com"], ["LIMIT", 1]]
69
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 18"], ["age", 0], ["created_at", "2025-05-28 19:12:33.618329"], ["updated_at", "2025-05-28 19:12:33.618329"], ["email", "michaeljohn18@gmail.com"], ["encrypted_password", "$2a$04$dvvyrPOGZ8GHTB0NbSy/geupMJUNqLAbutYR85oxpMcJw17SRYxO6"], ["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", "moderator"], ["remember_token", "cc5e07c43338cd5c64e2ce95d4ec756525c39cff"]]
70
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob19@gmail.com"], ["LIMIT", 1]]
71
+ User Create (0.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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 19"], ["age", 10], ["created_at", "2025-05-28 19:12:33.619509"], ["updated_at", "2025-05-28 19:12:33.619509"], ["email", "bob19@gmail.com"], ["encrypted_password", "$2a$04$sVhx2vui5M4t6lNRRZHefOEyxIY7mLN6BR7UFCAAS5OTmnIKcaucK"], ["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", "admin"], ["remember_token", "9fff284a36ebe3bdd7697d0536e36682cbdb9450"]]
72
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor20@gmail.com"], ["LIMIT", 1]]
73
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 20"], ["age", 36], ["created_at", "2025-05-28 19:12:33.620800"], ["updated_at", "2025-05-28 19:12:33.620800"], ["email", "igor20@gmail.com"], ["encrypted_password", "$2a$04$1HDkWs90yZtKapQRDg9xleUvmBS05tRp.FSxdHEecHjaEGFlKs5eq"], ["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"], ["remember_token", "1513f50f0e4e305df7832645f09725d862e462a4"]]
74
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris21@gmail.com"], ["LIMIT", 1]]
75
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 21"], ["age", 22], ["created_at", "2025-05-28 19:12:33.622276"], ["updated_at", "2025-05-28 19:12:33.622276"], ["email", "kris21@gmail.com"], ["encrypted_password", "$2a$04$Knl7Ou4UPLgXbKAvTGwHrO5tQSDYTBh0RoZ72QZPx1mKmWFbkdWCK"], ["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", "admin"], ["remember_token", "af7c25291f4af16d88336832b5c4f641bf5185b4"]]
76
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan22@gmail.com"], ["LIMIT", 1]]
77
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 22"], ["age", 82], ["created_at", "2025-05-28 19:12:33.624316"], ["updated_at", "2025-05-28 19:12:33.624316"], ["email", "alan22@gmail.com"], ["encrypted_password", "$2a$04$P4BlvpJGcxweHuYHRyzo1OvjKNgOEwfyh/5GPrEz5D1LjOg1cryFi"], ["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", "admin"], ["remember_token", "1576163f01acd419971161cb9160b4b0e0b3516b"]]
78
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan23@gmail.com"], ["LIMIT", 1]]
79
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 23"], ["age", 62], ["created_at", "2025-05-28 19:12:33.627564"], ["updated_at", "2025-05-28 19:12:33.627564"], ["email", "alan23@gmail.com"], ["encrypted_password", "$2a$04$WgDuCT.4iJIY3Re4.rkWJ.HljHG58YNvvvpM0Z44K9B7uEUBse7ii"], ["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", "moderator"], ["remember_token", "baf776e0e22312365e4340357ef1f3566d0afdc1"]]
80
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris24@gmail.com"], ["LIMIT", 1]]
81
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 24"], ["age", 79], ["created_at", "2025-05-28 19:12:33.628777"], ["updated_at", "2025-05-28 19:12:33.628777"], ["email", "kris24@gmail.com"], ["encrypted_password", "$2a$04$xMvplrxJgELauarHHjy9uuNbHlrcAv4zmsIqtw26ZNOdM/w.F8Q52"], ["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", "moderator"], ["remember_token", "d1b6dfdfc7c5c37cac484afdca336de625f01843"]]
82
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob25@gmail.com"], ["LIMIT", 1]]
83
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 25"], ["age", 68], ["created_at", "2025-05-28 19:12:33.629906"], ["updated_at", "2025-05-28 19:12:33.629906"], ["email", "bob25@gmail.com"], ["encrypted_password", "$2a$04$TxMWiA9tjMKWbhIViEpq6eeVEuAJk84qtwXgR5cLlqtfOSAMnUolS"], ["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", "moderator"], ["remember_token", "68b320d930107d3fa0071060d6c2f36ef59cfc9d"]]
84
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris26@gmail.com"], ["LIMIT", 1]]
85
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 26"], ["age", 52], ["created_at", "2025-05-28 19:12:33.631024"], ["updated_at", "2025-05-28 19:12:33.631024"], ["email", "kris26@gmail.com"], ["encrypted_password", "$2a$04$SZcGuL.XJvW5rIFXlNwoC.oqIVE/OBGj4YxrWEu8oDUxdh8.Vg0f6"], ["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", "moderator"], ["remember_token", "2c193507a5efdad253b932c3e0b169e660f59b05"]]
86
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan27@gmail.com"], ["LIMIT", 1]]
87
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 27"], ["age", 87], ["created_at", "2025-05-28 19:12:33.632077"], ["updated_at", "2025-05-28 19:12:33.632077"], ["email", "stan27@gmail.com"], ["encrypted_password", "$2a$04$f1rjEuz8bv5.VJoAbufazO9BBq.NbPKo06FlwepqG9jppXCbzpSxG"], ["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", "admin"], ["remember_token", "c844ee446d0eaa3e734ec4fcf2b2bb1f35191298"]]
88
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor28@gmail.com"], ["LIMIT", 1]]
89
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 28"], ["age", 22], ["created_at", "2025-05-28 19:12:33.633139"], ["updated_at", "2025-05-28 19:12:33.633139"], ["email", "igor28@gmail.com"], ["encrypted_password", "$2a$04$8D0Jytx5jseGClFx2SB7mOIiRIoGXHIJUwf5swuJ7U0fbCwEIaWi6"], ["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"], ["remember_token", "a707f21cd2cdc07bc8dab45ac9867156c7bd38fe"]]
90
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor29@gmail.com"], ["LIMIT", 1]]
91
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 29"], ["age", 32], ["created_at", "2025-05-28 19:12:33.634834"], ["updated_at", "2025-05-28 19:12:33.634834"], ["email", "igor29@gmail.com"], ["encrypted_password", "$2a$04$z/khiuG/d.scMvdy2yKqQeoZVREoqBATh4wAmNSA73sEwmSEdPBDO"], ["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", "moderator"], ["remember_token", "3b73fa902519b268423d542275ae445f8a45a317"]]
92
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan30@gmail.com"], ["LIMIT", 1]]
93
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 30"], ["age", 50], ["created_at", "2025-05-28 19:12:33.638026"], ["updated_at", "2025-05-28 19:12:33.638026"], ["email", "alan30@gmail.com"], ["encrypted_password", "$2a$04$yz1G2t5yT04WyAIysZg7/.57v5Vyexft/i5pal/9lfAs.HIfg8YG2"], ["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", "moderator"], ["remember_token", "916eedd2071eae8a77d63adc78d744d5f8c44f07"]]
94
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor31@gmail.com"], ["LIMIT", 1]]
95
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 31"], ["age", 26], ["created_at", "2025-05-28 19:12:33.639162"], ["updated_at", "2025-05-28 19:12:33.639162"], ["email", "igor31@gmail.com"], ["encrypted_password", "$2a$04$0enCaxuMMoOvlPuO0WMAneDojLdyphxTC.tUJnG7zHYSWO5GJAzH."], ["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", "admin"], ["remember_token", "9dd9d09f6e3b5748a8c6fc6a90044ef66bd09385"]]
96
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor32@gmail.com"], ["LIMIT", 1]]
97
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 32"], ["age", 54], ["created_at", "2025-05-28 19:12:33.640282"], ["updated_at", "2025-05-28 19:12:33.640282"], ["email", "igor32@gmail.com"], ["encrypted_password", "$2a$04$H3lyNcye3I4GtNsTP9R8rOtYondOBnaBH8faoTLlzgOQ27T78arKu"], ["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", "admin"], ["remember_token", "8ea93e86370582320c7a4589e7f7e9aeb5f5a6da"]]
98
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor33@gmail.com"], ["LIMIT", 1]]
99
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 33"], ["age", 75], ["created_at", "2025-05-28 19:12:33.641406"], ["updated_at", "2025-05-28 19:12:33.641406"], ["email", "igor33@gmail.com"], ["encrypted_password", "$2a$04$nx6RmQ7XY7IDzZpTWQ/Qr.SfR8G9gJNVO5cir4qhK.TdoVp052MDu"], ["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", "moderator"], ["remember_token", "e006020adee6b2e412b87477583e80e6de7e1791"]]
100
+ User Exists? (1.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob34@gmail.com"], ["LIMIT", 1]]
101
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 34"], ["age", 36], ["created_at", "2025-05-28 19:12:33.643896"], ["updated_at", "2025-05-28 19:12:33.643896"], ["email", "bob34@gmail.com"], ["encrypted_password", "$2a$04$/ZkdomPNmv7YmMR6HR37Keedm0CuLXaxOgS9dWO4hknRlXEliUVBO"], ["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", "admin"], ["remember_token", "cfe475de98686f56d7a48f7ada1a426648c7502e"]]
102
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris35@gmail.com"], ["LIMIT", 1]]
103
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 35"], ["age", 50], ["created_at", "2025-05-28 19:12:33.645126"], ["updated_at", "2025-05-28 19:12:33.645126"], ["email", "kris35@gmail.com"], ["encrypted_password", "$2a$04$zbIErpnCk8rMeTk6CNW5eeGSypdrShxgY3RnLEhmUv0B1g1EBeO5W"], ["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"], ["remember_token", "36f49276f58287cee7f8b54c5440ed9d5dce1944"]]
104
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor36@gmail.com"], ["LIMIT", 1]]
105
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 36"], ["age", 97], ["created_at", "2025-05-28 19:12:33.646241"], ["updated_at", "2025-05-28 19:12:33.646241"], ["email", "igor36@gmail.com"], ["encrypted_password", "$2a$04$68jJmzsYekp.3N0TG6zxHeYREDkjUqPI3R0Fu1.nthPNoSpddzHxq"], ["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"], ["remember_token", "02bb2d28409152885458128f44f458871224138a"]]
106
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor37@gmail.com"], ["LIMIT", 1]]
107
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 37"], ["age", 47], ["created_at", "2025-05-28 19:12:33.647335"], ["updated_at", "2025-05-28 19:12:33.647335"], ["email", "igor37@gmail.com"], ["encrypted_password", "$2a$04$yet8CyA8bydDPDgF6NQj.ePzLNh0uZAwkL945P9IQDrbakio2YzeK"], ["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"], ["remember_token", "d8aeb69d274044dbe49fecb091a128d90c21e131"]]
108
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn38@gmail.com"], ["LIMIT", 1]]
109
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 38"], ["age", 39], ["created_at", "2025-05-28 19:12:33.648558"], ["updated_at", "2025-05-28 19:12:33.648558"], ["email", "michaeljohn38@gmail.com"], ["encrypted_password", "$2a$04$JZx1znfkCJMnp4b8BZd3CuGd9.5k0L06i8ZJhzWcgLe2KZc2VIYhS"], ["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", "moderator"], ["remember_token", "8be8b2a47346f8a33b480a6727e46c8bb0b20b7c"]]
110
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris39@gmail.com"], ["LIMIT", 1]]
111
+ User Create (0.2ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 39"], ["age", 25], ["created_at", "2025-05-28 19:12:33.649744"], ["updated_at", "2025-05-28 19:12:33.649744"], ["email", "kris39@gmail.com"], ["encrypted_password", "$2a$04$sigyjvBH8dotFC9UI4LySeZMeZggJpastvO8MNmQJILLGO0a2hPkG"], ["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", "moderator"], ["remember_token", "8430f2d18d7363a02ac8eb72ea724cd1775ea2dc"]]
112
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn40@gmail.com"], ["LIMIT", 1]]
113
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 40"], ["age", 17], ["created_at", "2025-05-28 19:12:33.651380"], ["updated_at", "2025-05-28 19:12:33.651380"], ["email", "michaeljohn40@gmail.com"], ["encrypted_password", "$2a$04$S6SsigqxcqI.fwNdWHYW7OSqe.7id1ZNryDcjoSZ1lKvXQqgHuOUC"], ["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", "moderator"], ["remember_token", "ffeefa7854500feb8441ace7c3b2f4b693c22673"]]
114
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor41@gmail.com"], ["LIMIT", 1]]
115
+ User Create (0.2ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 41"], ["age", 23], ["created_at", "2025-05-28 19:12:33.653015"], ["updated_at", "2025-05-28 19:12:33.653015"], ["email", "igor41@gmail.com"], ["encrypted_password", "$2a$04$Go.3X43EM3XxbbjEXnEtbuuvTOp4lAq3X1OLMw.c1oecPtHqEr5Pi"], ["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", "admin"], ["remember_token", "5a26a640197ebd504d1bd604e1c0ddad059251c9"]]
116
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris42@gmail.com"], ["LIMIT", 1]]
117
+ 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 42"], ["age", 19], ["created_at", "2025-05-28 19:12:33.654295"], ["updated_at", "2025-05-28 19:12:33.654295"], ["email", "kris42@gmail.com"], ["encrypted_password", "$2a$04$Vj6rEwppCzl0.laUQ8bAOeuxqHVq5OV5au9dYarZbOKI9Qm2ML5bW"], ["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", "moderator"], ["remember_token", "73fb530982baaee7d4891d1d3b9c6e5d3f009763"]]
118
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan43@gmail.com"], ["LIMIT", 1]]
119
+ User Create (0.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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 43"], ["age", 47], ["created_at", "2025-05-28 19:12:33.658108"], ["updated_at", "2025-05-28 19:12:33.658108"], ["email", "alan43@gmail.com"], ["encrypted_password", "$2a$04$2JhMlyufQ.jZkdoINmlk0O3ncSsXAjpciRO73Ql5yO3rhz7i6Ao/G"], ["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", "admin"], ["remember_token", "18407bb1b24bef0a43b812fdffecd31f5c14c894"]]
120
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris44@gmail.com"], ["LIMIT", 1]]
121
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 44"], ["age", 44], ["created_at", "2025-05-28 19:12:33.659423"], ["updated_at", "2025-05-28 19:12:33.659423"], ["email", "kris44@gmail.com"], ["encrypted_password", "$2a$04$/T2gDPJ.UyxfRJfFXqtKJOmA0EHDC2sazUx4hs4d9Hg37gQpe/hKO"], ["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"], ["remember_token", "ff5e5c42ed8229af18e7ece622059eee0aa9f5f0"]]
122
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor45@gmail.com"], ["LIMIT", 1]]
123
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 45"], ["age", 74], ["created_at", "2025-05-28 19:12:33.660662"], ["updated_at", "2025-05-28 19:12:33.660662"], ["email", "igor45@gmail.com"], ["encrypted_password", "$2a$04$AV2HDDzLc8WWcb9VBd9QNO9J6zLiz5cW0eN81kJbLHUQ0srOQknzS"], ["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", "admin"], ["remember_token", "f58a3f2e30874a4d1a5d63760088f9712f416931"]]
124
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan46@gmail.com"], ["LIMIT", 1]]
125
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 46"], ["age", 38], ["created_at", "2025-05-28 19:12:33.662500"], ["updated_at", "2025-05-28 19:12:33.662500"], ["email", "stan46@gmail.com"], ["encrypted_password", "$2a$04$rSXimTScSP3dSqARUX9TueOhC.VRIEQ1Mr9ZNDanN5avtj/fse/AK"], ["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", "moderator"], ["remember_token", "9b82690791f2d0d4a49c840a9aff9f431034cce5"]]
126
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob47@gmail.com"], ["LIMIT", 1]]
127
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 47"], ["age", 52], ["created_at", "2025-05-28 19:12:33.663754"], ["updated_at", "2025-05-28 19:12:33.663754"], ["email", "bob47@gmail.com"], ["encrypted_password", "$2a$04$sM/LLJOmYnCzkwfHj4TOZu4V4lDhmXaQS.vYFenfUm/yAcdyNoQqK"], ["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", "moderator"], ["remember_token", "cd3e4a2045a216ff83961e6b8f7eb430c1729379"]]
128
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob48@gmail.com"], ["LIMIT", 1]]
129
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 48"], ["age", 61], ["created_at", "2025-05-28 19:12:33.664901"], ["updated_at", "2025-05-28 19:12:33.664901"], ["email", "bob48@gmail.com"], ["encrypted_password", "$2a$04$z4fzq7PtZEqTJNOAiy9vo.9iW.FKazqUkz4IiIkhGeWlmg9nAAokK"], ["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", "moderator"], ["remember_token", "bd63d4604973cc5abbac4055d503f0b9af627378"]]
130
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob49@gmail.com"], ["LIMIT", 1]]
131
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 49"], ["age", 97], ["created_at", "2025-05-28 19:12:33.665921"], ["updated_at", "2025-05-28 19:12:33.665921"], ["email", "bob49@gmail.com"], ["encrypted_password", "$2a$04$AZYwgiYhB1XGi.8Cy6II.ugqQghNsiT.VemcB7gIHdLCYC/OJchHO"], ["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", "admin"], ["remember_token", "53ed6f596caecf3b31fb53a48cef8a15f61f9b35"]]
132
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn50@gmail.com"], ["LIMIT", 1]]
133
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 50"], ["age", 19], ["created_at", "2025-05-28 19:12:33.666951"], ["updated_at", "2025-05-28 19:12:33.666951"], ["email", "michaeljohn50@gmail.com"], ["encrypted_password", "$2a$04$gfrvSKlTp.qrYybQIstY4.tUKFk1YZ7DdOj8Xeef2h8Yx8SU53ojq"], ["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"], ["remember_token", "f9032a25ce2f14831171128687e139938205b527"]]
134
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor51@gmail.com"], ["LIMIT", 1]]
135
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 51"], ["age", 15], ["created_at", "2025-05-28 19:12:33.667988"], ["updated_at", "2025-05-28 19:12:33.667988"], ["email", "igor51@gmail.com"], ["encrypted_password", "$2a$04$DKwJjH0Yplyw0PzPxnUWPO1HHyDK3agnwRyVDI0z40BYJK05ZsbLS"], ["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"], ["remember_token", "5e141fbb134b76a133f49da25a99a9e29590e46f"]]
136
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob52@gmail.com"], ["LIMIT", 1]]
137
+ User Create (0.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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 52"], ["age", 12], ["created_at", "2025-05-28 19:12:33.669286"], ["updated_at", "2025-05-28 19:12:33.669286"], ["email", "bob52@gmail.com"], ["encrypted_password", "$2a$04$6IZwUatR/TVjeWMUzZTTjuovxq4LFQjR3UOp8i996oh6pMwXNihsm"], ["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", "moderator"], ["remember_token", "733082daf800795367c9a2908daeac0b12122bae"]]
138
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn53@gmail.com"], ["LIMIT", 1]]
139
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 53"], ["age", 82], ["created_at", "2025-05-28 19:12:33.670536"], ["updated_at", "2025-05-28 19:12:33.670536"], ["email", "michaeljohn53@gmail.com"], ["encrypted_password", "$2a$04$eHoTQNwHtwf44nIhlxwdI.VjdnZyGATFkklCyH2u1wGmt/B6NpNMy"], ["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", "moderator"], ["remember_token", "37c6043ec15a556cb3a7f1960c978da2432ffb13"]]
140
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan54@gmail.com"], ["LIMIT", 1]]
141
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 54"], ["age", 11], ["created_at", "2025-05-28 19:12:33.671643"], ["updated_at", "2025-05-28 19:12:33.671643"], ["email", "stan54@gmail.com"], ["encrypted_password", "$2a$04$vUfimXH03cMqsppS1vUXX..Hp9HNH.PbAOh0jcaiemdS.jYcLzpFm"], ["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", "moderator"], ["remember_token", "82226769469821aaf0c3965f20b8e23aa0d7ffb1"]]
142
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan55@gmail.com"], ["LIMIT", 1]]
143
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 55"], ["age", 76], ["created_at", "2025-05-28 19:12:33.672697"], ["updated_at", "2025-05-28 19:12:33.672697"], ["email", "stan55@gmail.com"], ["encrypted_password", "$2a$04$LnQce3KZb9/Kf6GIRGcf7.RFjCeUQy6pLgwoY87hlbF6DGjz4q9Te"], ["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", "moderator"], ["remember_token", "0e0e2ee7ae7acab8a53228651c929669de6f91a1"]]
144
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan56@gmail.com"], ["LIMIT", 1]]
145
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 56"], ["age", 76], ["created_at", "2025-05-28 19:12:33.673715"], ["updated_at", "2025-05-28 19:12:33.673715"], ["email", "stan56@gmail.com"], ["encrypted_password", "$2a$04$EcTRxdDHFqMfe4RceJK9UuwW4jRylhK3YSSod11STUuH6dWSyYLQS"], ["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", "admin"], ["remember_token", "e199e03694db9afa6a9864113bb03c1d36ec01a5"]]
146
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris57@gmail.com"], ["LIMIT", 1]]
147
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 57"], ["age", 76], ["created_at", "2025-05-28 19:12:33.675869"], ["updated_at", "2025-05-28 19:12:33.675869"], ["email", "kris57@gmail.com"], ["encrypted_password", "$2a$04$LCYuYMaMQq21dtcnYz07yO4M/1R1i5E1JFZD0IuZae9YAX9N5z7Ka"], ["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", "admin"], ["remember_token", "d585072379ac096f950c6886ff7047f160eea416"]]
148
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan58@gmail.com"], ["LIMIT", 1]]
149
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 58"], ["age", 47], ["created_at", "2025-05-28 19:12:33.677285"], ["updated_at", "2025-05-28 19:12:33.677285"], ["email", "alan58@gmail.com"], ["encrypted_password", "$2a$04$azvH0nvIYI0O.AUK1R.EbuoW2IiDZeCkL2ziLibF8bzfcqMjlRVdO"], ["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", "moderator"], ["remember_token", "1643a6e9afa760ab6ada8f27edac5ae8cde58225"]]
150
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan59@gmail.com"], ["LIMIT", 1]]
151
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 59"], ["age", 46], ["created_at", "2025-05-28 19:12:33.678648"], ["updated_at", "2025-05-28 19:12:33.678648"], ["email", "stan59@gmail.com"], ["encrypted_password", "$2a$04$i/BfZa5bWHV6beNTTXy4IuG7JFP0NTOe/xx5F4HGB7lFKNg.cBmvK"], ["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"], ["remember_token", "0842e5677b7c5d50ddaa3a4b001c9dab68c03965"]]
152
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn60@gmail.com"], ["LIMIT", 1]]
153
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 60"], ["age", 14], ["created_at", "2025-05-28 19:12:33.681528"], ["updated_at", "2025-05-28 19:12:33.681528"], ["email", "michaeljohn60@gmail.com"], ["encrypted_password", "$2a$04$1mxlCnrxz6XU5CotN3wt0OlgK.258SrxAotw5Vq5tdeNCA.b860jK"], ["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", "moderator"], ["remember_token", "e9865984e27e3f4802d90b14c57e03b404227daf"]]
154
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan61@gmail.com"], ["LIMIT", 1]]
155
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 61"], ["age", 9], ["created_at", "2025-05-28 19:12:33.682610"], ["updated_at", "2025-05-28 19:12:33.682610"], ["email", "stan61@gmail.com"], ["encrypted_password", "$2a$04$loOaJ2BMiyRpn4xzbR.1Xeht0mNI0pwJa/.1RKlTfknD0uJkHYnpK"], ["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"], ["remember_token", "69cca08ef2b24a6b17e7d875925d5cd459eadff9"]]
156
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor62@gmail.com"], ["LIMIT", 1]]
157
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 62"], ["age", 26], ["created_at", "2025-05-28 19:12:33.683630"], ["updated_at", "2025-05-28 19:12:33.683630"], ["email", "igor62@gmail.com"], ["encrypted_password", "$2a$04$S..iex.OxH440NDBe3LqI.H69LH6Upuw0k5Tx..fwRD/NheBGHGLK"], ["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"], ["remember_token", "c70cb09baeb999024d0faf83370af0c79d117d1c"]]
158
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan63@gmail.com"], ["LIMIT", 1]]
159
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 63"], ["age", 10], ["created_at", "2025-05-28 19:12:33.684685"], ["updated_at", "2025-05-28 19:12:33.684685"], ["email", "stan63@gmail.com"], ["encrypted_password", "$2a$04$RcVT1mbPUZQs/IYgYZZkpOcUSdhueSDNF6GxR.fJ5mrCwDPxtjV9W"], ["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"], ["remember_token", "3d467c988d95aff8ee36421fdda25fc2856e59dc"]]
160
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor64@gmail.com"], ["LIMIT", 1]]
161
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 64"], ["age", 80], ["created_at", "2025-05-28 19:12:33.685704"], ["updated_at", "2025-05-28 19:12:33.685704"], ["email", "igor64@gmail.com"], ["encrypted_password", "$2a$04$Kt.xmwLSl25o6v4/lE6QFOZurNi43onWXgKbapuo9a/w1rOG/MEFy"], ["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", "moderator"], ["remember_token", "e41e3181e20c7b5399e4f7aa4d5e4c44e9071aa0"]]
162
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris65@gmail.com"], ["LIMIT", 1]]
163
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 65"], ["age", 41], ["created_at", "2025-05-28 19:12:33.686718"], ["updated_at", "2025-05-28 19:12:33.686718"], ["email", "kris65@gmail.com"], ["encrypted_password", "$2a$04$joyMsFTFDVm/Z1wmlaVlLuZ53GdTN3uddLllj.MN1o0ewHBGa1iye"], ["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"], ["remember_token", "c72aabe90c11fd90fc9d44ceb614eb71acea85c1"]]
164
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan66@gmail.com"], ["LIMIT", 1]]
165
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 66"], ["age", 17], ["created_at", "2025-05-28 19:12:33.687793"], ["updated_at", "2025-05-28 19:12:33.687793"], ["email", "alan66@gmail.com"], ["encrypted_password", "$2a$04$my/qQQfaspp.Ti3zCW0Gqusfy2te9MqYl4L72i5P6iBGEasY350dy"], ["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"], ["remember_token", "2d0214d03bc27a489c147620e496e5711afb8f3b"]]
166
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob67@gmail.com"], ["LIMIT", 1]]
167
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 67"], ["age", 66], ["created_at", "2025-05-28 19:12:33.688905"], ["updated_at", "2025-05-28 19:12:33.688905"], ["email", "bob67@gmail.com"], ["encrypted_password", "$2a$04$.zekCDVhTzYi/b0tMscSqOlhRvR/inEQeULgkbXSnoAA4Ez39Qe0m"], ["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", "moderator"], ["remember_token", "72e614e2595eb2d168d7433ba872916bae98df1c"]]
168
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn68@gmail.com"], ["LIMIT", 1]]
169
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 68"], ["age", 71], ["created_at", "2025-05-28 19:12:33.689921"], ["updated_at", "2025-05-28 19:12:33.689921"], ["email", "michaeljohn68@gmail.com"], ["encrypted_password", "$2a$04$7v5QlesFzsNFvQMsf3otteT8RYqiM2Qz9OtxuLB/RmuYoBpzZ3AYG"], ["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", "moderator"], ["remember_token", "ab8534dd9f4a99232f8d1ee2f2c99570afee42db"]]
170
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor69@gmail.com"], ["LIMIT", 1]]
171
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 69"], ["age", 80], ["created_at", "2025-05-28 19:12:33.690933"], ["updated_at", "2025-05-28 19:12:33.690933"], ["email", "igor69@gmail.com"], ["encrypted_password", "$2a$04$Cuge0tXCXxWzCJGMsUT3o.8w/ncs.1vVF1lsqiUt5H5Z9jLjhR5Ta"], ["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", "moderator"], ["remember_token", "2283d847758dac889bd43b721d9cfcf046590902"]]
172
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris70@gmail.com"], ["LIMIT", 1]]
173
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 70"], ["age", 13], ["created_at", "2025-05-28 19:12:33.691948"], ["updated_at", "2025-05-28 19:12:33.691948"], ["email", "kris70@gmail.com"], ["encrypted_password", "$2a$04$usa1Fyo/jm6bEZefIfi17Otmd2WelKauJTAIK0ADQCPHr3PE.pMo6"], ["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", "moderator"], ["remember_token", "2c54cbe09627f69ed2bf4c8e620713e01e499c3c"]]
174
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan71@gmail.com"], ["LIMIT", 1]]
175
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 71"], ["age", 3], ["created_at", "2025-05-28 19:12:33.692972"], ["updated_at", "2025-05-28 19:12:33.692972"], ["email", "stan71@gmail.com"], ["encrypted_password", "$2a$04$by7YV5cGXdWbw0TMTwDdYOS9HAKOsL.WCzWLVtRYNFqtLdlztiEp6"], ["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", "admin"], ["remember_token", "ff711e49b642a3fc980ce282c44981fb27aabc39"]]
176
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris72@gmail.com"], ["LIMIT", 1]]
177
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 72"], ["age", 66], ["created_at", "2025-05-28 19:12:33.693980"], ["updated_at", "2025-05-28 19:12:33.693980"], ["email", "kris72@gmail.com"], ["encrypted_password", "$2a$04$W/Bu11pVemjnP5DIzN93COFGMr/gOhM61k1pyO6e6DHE9.pf6qHLK"], ["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", "moderator"], ["remember_token", "147b7ea24700a23c856b7a6beb779a3b685deb80"]]
178
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn73@gmail.com"], ["LIMIT", 1]]
179
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 73"], ["age", 70], ["created_at", "2025-05-28 19:12:33.694987"], ["updated_at", "2025-05-28 19:12:33.694987"], ["email", "michaeljohn73@gmail.com"], ["encrypted_password", "$2a$04$1UD3Vog6tT9u8tq26XC4eusaE1vHRmf77aj1xFvUByTDo1dlqTg8a"], ["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", "moderator"], ["remember_token", "c1865adbf87c116f1d9dd6ee581f3ee3e34ab459"]]
180
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris74@gmail.com"], ["LIMIT", 1]]
181
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 74"], ["age", 33], ["created_at", "2025-05-28 19:12:33.696005"], ["updated_at", "2025-05-28 19:12:33.696005"], ["email", "kris74@gmail.com"], ["encrypted_password", "$2a$04$miupl.PDCnJ9QYDN/u0OSOxgeYszcsUsr2BA9LfpzDYOLvJoapFgO"], ["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", "admin"], ["remember_token", "9a835f63b2c2c5453345939602f5d334242a3f0e"]]
182
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob75@gmail.com"], ["LIMIT", 1]]
183
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 75"], ["age", 41], ["created_at", "2025-05-28 19:12:33.697034"], ["updated_at", "2025-05-28 19:12:33.697034"], ["email", "bob75@gmail.com"], ["encrypted_password", "$2a$04$soSDXrIhnW.RZcJbyC1hP.o8Laf.8oQqu4.Na2Bjj9KF4fXxctujW"], ["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", "moderator"], ["remember_token", "ac816fb4d8596f2efcaff10aae1b7e9bad5e9f55"]]
184
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob76@gmail.com"], ["LIMIT", 1]]
185
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 76"], ["age", 99], ["created_at", "2025-05-28 19:12:33.698044"], ["updated_at", "2025-05-28 19:12:33.698044"], ["email", "bob76@gmail.com"], ["encrypted_password", "$2a$04$zSqHhip7W08ok3ScuqRlOu0dc1S1A1xyHxQn0LuArZWJnCoEyjGce"], ["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", "admin"], ["remember_token", "5fdc20aeed4dee8e67d1e2c4aa8621e03dcfedb9"]]
186
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan77@gmail.com"], ["LIMIT", 1]]
187
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 77"], ["age", 46], ["created_at", "2025-05-28 19:12:33.699053"], ["updated_at", "2025-05-28 19:12:33.699053"], ["email", "stan77@gmail.com"], ["encrypted_password", "$2a$04$CZciW027/rzWX40zrgxM1.N2X7SEB/5Eq5Lsx.ixFxnB5Tm5022hy"], ["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", "moderator"], ["remember_token", "cd35fbbb51eca385b89b9ed857c4cce00a5f0919"]]
188
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris78@gmail.com"], ["LIMIT", 1]]
189
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 78"], ["age", 24], ["created_at", "2025-05-28 19:12:33.700091"], ["updated_at", "2025-05-28 19:12:33.700091"], ["email", "kris78@gmail.com"], ["encrypted_password", "$2a$04$IrHNP1nOm2IuNVPA9S0Hmu/7eBYeN65Oy/IQdi6IqBBVt61uPHP3C"], ["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", "moderator"], ["remember_token", "f69e10e7baaf7fbdf474ec1b30359074ad62f63f"]]
190
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan79@gmail.com"], ["LIMIT", 1]]
191
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 79"], ["age", 10], ["created_at", "2025-05-28 19:12:33.701114"], ["updated_at", "2025-05-28 19:12:33.701114"], ["email", "stan79@gmail.com"], ["encrypted_password", "$2a$04$LsjdS.Z86UhcGTj/pO5uYOOuZWYrta8LFKJeeD5UEp0941M9BBS2."], ["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", "moderator"], ["remember_token", "583ca107fc62b20fa8bdd21d78ddd78883231308"]]
192
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris80@gmail.com"], ["LIMIT", 1]]
193
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 80"], ["age", 27], ["created_at", "2025-05-28 19:12:33.702123"], ["updated_at", "2025-05-28 19:12:33.702123"], ["email", "kris80@gmail.com"], ["encrypted_password", "$2a$04$7X/T9L3i0ctJaV9ThH945OggyZ0VHZtpDaXqvcl8dgempzpVVWyvC"], ["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", "admin"], ["remember_token", "572613ea552ac3dec49ec2373ba87867772d1051"]]
194
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan81@gmail.com"], ["LIMIT", 1]]
195
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 81"], ["age", 54], ["created_at", "2025-05-28 19:12:33.703140"], ["updated_at", "2025-05-28 19:12:33.703140"], ["email", "alan81@gmail.com"], ["encrypted_password", "$2a$04$75V2zqzUt9gm0yla9y7wAuul5XoabH2NkdL1B2qEColFrWLNdO2cy"], ["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", "moderator"], ["remember_token", "df3d0130315e0c99bbb356d068478566f27ee373"]]
196
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob82@gmail.com"], ["LIMIT", 1]]
197
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 82"], ["age", 58], ["created_at", "2025-05-28 19:12:33.704155"], ["updated_at", "2025-05-28 19:12:33.704155"], ["email", "bob82@gmail.com"], ["encrypted_password", "$2a$04$EwTZwu9y1W3H6jByYU79eulNiJGkbSKtwPEZiMU9Zs2XZXTJLqNQi"], ["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", "moderator"], ["remember_token", "edc6bbff477db3f326a58f720ac8cd64dbb800e6"]]
198
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan83@gmail.com"], ["LIMIT", 1]]
199
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 83"], ["age", 34], ["created_at", "2025-05-28 19:12:33.705183"], ["updated_at", "2025-05-28 19:12:33.705183"], ["email", "stan83@gmail.com"], ["encrypted_password", "$2a$04$RUfZ9pcwELo2/exDlfXLLO5D0JL0ITtCxutCSCVHZE5Ew/VyDmeG."], ["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", "moderator"], ["remember_token", "cb6ddfdd01cca8f98da424cf0e4fe99acad2f7c5"]]
200
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn84@gmail.com"], ["LIMIT", 1]]
201
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 84"], ["age", 18], ["created_at", "2025-05-28 19:12:33.706253"], ["updated_at", "2025-05-28 19:12:33.706253"], ["email", "michaeljohn84@gmail.com"], ["encrypted_password", "$2a$04$haqHAa2V..umCdE2tv79b.KsY2vBIQ8OS8Bl.3V3IZ37uNAMHHsR6"], ["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", "moderator"], ["remember_token", "f5b083c9fe5038cbf2e8de3244cc674413d72813"]]
202
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob85@gmail.com"], ["LIMIT", 1]]
203
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 85"], ["age", 1], ["created_at", "2025-05-28 19:12:33.707337"], ["updated_at", "2025-05-28 19:12:33.707337"], ["email", "bob85@gmail.com"], ["encrypted_password", "$2a$04$Gm416/L3xFIgg.dG4YFp3O1ZGyIe0hJwCskLrEmx.XUTM6wC5wZpy"], ["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"], ["remember_token", "3269d9e2983abecc649eadc941980e765c713b77"]]
204
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan86@gmail.com"], ["LIMIT", 1]]
205
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 86"], ["age", 65], ["created_at", "2025-05-28 19:12:33.708383"], ["updated_at", "2025-05-28 19:12:33.708383"], ["email", "alan86@gmail.com"], ["encrypted_password", "$2a$04$zoJ7smEADR4tAxrBlllSeOr84MCUFzFm5UpCrhkTcFifcbdFwQpsm"], ["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", "admin"], ["remember_token", "cab5153a10b6ad9e9cd7ee74cdfcc538ccc4fb5d"]]
206
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor87@gmail.com"], ["LIMIT", 1]]
207
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 87"], ["age", 1], ["created_at", "2025-05-28 19:12:33.709402"], ["updated_at", "2025-05-28 19:12:33.709402"], ["email", "igor87@gmail.com"], ["encrypted_password", "$2a$04$QLsZh9mhBFejVr0XxYooee3owmIZ6w9ObgNaAd9Kv5H7QgBOp9GYG"], ["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", "admin"], ["remember_token", "10df51639640b487d7701e56895c3a80d9a61e11"]]
208
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob88@gmail.com"], ["LIMIT", 1]]
209
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 88"], ["age", 16], ["created_at", "2025-05-28 19:12:33.710421"], ["updated_at", "2025-05-28 19:12:33.710421"], ["email", "bob88@gmail.com"], ["encrypted_password", "$2a$04$74hOq3rv6Q4aE5twHQNCyerBdCmdneCZspr5MJN9wwNfhOcvq671e"], ["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", "admin"], ["remember_token", "51ff7ab9faf1e2f3665d5dc94b57b9a3925a4595"]]
210
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan89@gmail.com"], ["LIMIT", 1]]
211
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 89"], ["age", 24], ["created_at", "2025-05-28 19:12:33.711431"], ["updated_at", "2025-05-28 19:12:33.711431"], ["email", "stan89@gmail.com"], ["encrypted_password", "$2a$04$Iv0CIqvqfncKzWBq1bptseDPxiDE.U9q1Qq1TpHy0.GCPIEudj1iC"], ["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", "admin"], ["remember_token", "3db94d4bd3ba5a69017d35d94a1e0d9e3733d018"]]
212
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alan90@gmail.com"], ["LIMIT", 1]]
213
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 90"], ["age", 19], ["created_at", "2025-05-28 19:12:33.712460"], ["updated_at", "2025-05-28 19:12:33.712460"], ["email", "alan90@gmail.com"], ["encrypted_password", "$2a$04$lkPFezKIUk3fkoW0yt9V..R/iCmvrDi1H5yDBXJ/U5.v6GJkyXl1q"], ["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"], ["remember_token", "c86f3b4b0a1f1fee8a31e349e766d9905b835f9a"]]
214
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob91@gmail.com"], ["LIMIT", 1]]
215
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 91"], ["age", 54], ["created_at", "2025-05-28 19:12:33.713468"], ["updated_at", "2025-05-28 19:12:33.713468"], ["email", "bob91@gmail.com"], ["encrypted_password", "$2a$04$srnMx2sHeLpYoYKoiX40zedQvHOnVG7fL08d9hLQXRg./jVE7YITy"], ["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"], ["remember_token", "c95eb0c74494b6f5a0ba5d2567bebe30acac3f58"]]
216
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor92@gmail.com"], ["LIMIT", 1]]
217
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Igor 92"], ["age", 61], ["created_at", "2025-05-28 19:12:33.714501"], ["updated_at", "2025-05-28 19:12:33.714501"], ["email", "igor92@gmail.com"], ["encrypted_password", "$2a$04$X.EyEnG51YXXCbVQXLs0iugQrm14gyrqWMJWRLBajbMer2VKL0nDa"], ["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"], ["remember_token", "19d7f2a0451e609b88867c3e94fd3ee079ea78bc"]]
218
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob93@gmail.com"], ["LIMIT", 1]]
219
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 93"], ["age", 82], ["created_at", "2025-05-28 19:12:33.715540"], ["updated_at", "2025-05-28 19:12:33.715540"], ["email", "bob93@gmail.com"], ["encrypted_password", "$2a$04$PY9NNhEQjPOO39n77yEgRumzZiUO9sa1Zfn2ob14/L3Cws8U2dRIe"], ["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", "moderator"], ["remember_token", "96f9c4563f59996802fc4737fe265ad078c284a1"]]
220
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris94@gmail.com"], ["LIMIT", 1]]
221
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Bob 94"], ["age", 45], ["created_at", "2025-05-28 19:12:33.716558"], ["updated_at", "2025-05-28 19:12:33.716558"], ["email", "kris94@gmail.com"], ["encrypted_password", "$2a$04$jGUb4.SDDPXZlGfv9ITRgu/j.h7YSUgdG54Bh/4.g6kDm6pPXPXIm"], ["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", "moderator"], ["remember_token", "66066bfe88981d41e70fbdf924943d77d7320414"]]
222
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor95@gmail.com"], ["LIMIT", 1]]
223
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 95"], ["age", 19], ["created_at", "2025-05-28 19:12:33.717576"], ["updated_at", "2025-05-28 19:12:33.717576"], ["email", "igor95@gmail.com"], ["encrypted_password", "$2a$04$KUKpWHf4w/8JFXsCEFCN7.uxPEl4mKKf/gxuK441tuRBE/c6ZFyZW"], ["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", "moderator"], ["remember_token", "120122f36ff124aeecf4d16371d90ba0ca726dfc"]]
224
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob96@gmail.com"], ["LIMIT", 1]]
225
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Alan 96"], ["age", 19], ["created_at", "2025-05-28 19:12:33.718626"], ["updated_at", "2025-05-28 19:12:33.718626"], ["email", "bob96@gmail.com"], ["encrypted_password", "$2a$04$0eDIEA/S1jPbmHbpGVq7lODIgubMrvrarpkkV3/OwqXY8QPrMUP9a"], ["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", "moderator"], ["remember_token", "d6a58f0cbb30a44a23687bb2311fa2c74863fc7d"]]
226
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor97@gmail.com"], ["LIMIT", 1]]
227
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Kris 97"], ["age", 65], ["created_at", "2025-05-28 19:12:33.719687"], ["updated_at", "2025-05-28 19:12:33.719687"], ["email", "igor97@gmail.com"], ["encrypted_password", "$2a$04$w7vCIKRhiFFOPgSLcZ54Tu46KTPY9rjxVMBt6.XLAHFi.0kvVVg9a"], ["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", "admin"], ["remember_token", "4c0bce0aa4cda08946daf3313335e17a6f117f1b"]]
228
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "igor98@gmail.com"], ["LIMIT", 1]]
229
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "Stan 98"], ["age", 31], ["created_at", "2025-05-28 19:12:33.720706"], ["updated_at", "2025-05-28 19:12:33.720706"], ["email", "igor98@gmail.com"], ["encrypted_password", "$2a$04$DpdUxKImU6KmuGT2IM7DIefO.vqpfajFUzbWE4prWOJqJd7c6tO5S"], ["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"], ["remember_token", "64970e2be47b0469e4b839c679d1b535a6d581f0"]]
230
+ User Exists? (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michaeljohn99@gmail.com"], ["LIMIT", 1]]
231
+ User Create (0.0ms) 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", "remember_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "MichaelJohn 99"], ["age", 0], ["created_at", "2025-05-28 19:12:33.721721"], ["updated_at", "2025-05-28 19:12:33.721721"], ["email", "michaeljohn99@gmail.com"], ["encrypted_password", "$2a$04$wQZe2YE144xEGd14PrTLP.FyhwovPytEp8d.YRH6V2cuLFtsNxooe"], ["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", "moderator"], ["remember_token", "8891172bea4470c0d1806d398e3eb9f67e259807"]]
232
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20150909210357') RETURNING "version"
233
+ TRANSACTION (0.4ms) COMMIT TRANSACTION
234
+ Migrating to ChangeUsers (20150928123254)
235
+ TRANSACTION (0.0ms) BEGIN immediate TRANSACTION
236
+  (1.3ms) ALTER TABLE "users" ADD "login" varchar
237
+  (0.1ms) ALTER TABLE "users" ADD "crypted_password" varchar
238
+  (0.0ms) ALTER TABLE "users" ADD "password_salt" varchar
239
+  (0.0ms) ALTER TABLE "users" ADD "persistence_token" varchar
240
+  (0.0ms) ALTER TABLE "users" ADD "login_count" integer
241
+  (0.0ms) ALTER TABLE "users" ADD "failed_login_count" integer
242
+  (0.0ms) ALTER TABLE "users" ADD "last_request_at" datetime
243
+  (0.0ms) ALTER TABLE "users" ADD "current_login_at" datetime
244
+  (0.0ms) ALTER TABLE "users" ADD "last_login_at" datetime
245
+  (0.0ms) ALTER TABLE "users" ADD "current_login_ip" varchar
246
+  (0.0ms) ALTER TABLE "users" ADD "last_login_ip" varchar
247
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20150928123254') RETURNING "version"
248
+ TRANSACTION (0.0ms) COMMIT TRANSACTION
249
+ Migrating to AddClearanceToUsers (20151007170422)
250
+ TRANSACTION (0.0ms) BEGIN immediate TRANSACTION
251
+  (0.1ms) ALTER TABLE "users" ADD "confirmation_token" varchar(128)
252
+  (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
253
+  (0.0ms) SELECT id FROM users WHERE remember_token IS NULL
254
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20151007170422') RETURNING "version"
255
+ TRANSACTION (0.0ms) COMMIT TRANSACTION
256
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
257
+ 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"]]
258
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
259
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
260
+ -----------------------------------------------------------------------------------
261
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
262
+ -----------------------------------------------------------------------------------
263
+ TRANSACTION (0.6ms) SAVEPOINT active_record_1
264
+ User Exists? (2.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
265
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:13:05.706888"], ["updated_at", "2025-05-28 19:13:05.706888"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$pA7GVdqQWcq90rHVveMJX.rmDwkzec8FoYIWhkSDr0c5PqUvVmSoK"], ["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"], ["remember_token", "082ca8bf22802374d988772f21c60762edd86d00"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
266
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
267
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:13:06 +0300
268
+ Processing by HomeController#index as HTML
269
+ ==> No USER
270
+ Rendering layout layouts/application.html.erb
271
+ Rendering home/index.html.erb within layouts/application
272
+ Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | GC: 0.0ms)
273
+ Rendered shared/_header.html.erb (Duration: 0.1ms | GC: 0.0ms)
274
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
275
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
276
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.1ms | GC: 0.0ms)
277
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
278
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.4ms | GC: 0.0ms)
279
+ Rendered shared/_footer.html.erb (Duration: 2.9ms | GC: 0.0ms)
280
+ Rendered layout layouts/application.html.erb (Duration: 4.4ms | GC: 0.0ms)
281
+ Completed 200 OK in 17ms (Views: 6.1ms | ActiveRecord: 0.3ms (1 query, 0 cached) | GC: 0.0ms)
282
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2025-05-28 22:13:06 +0300
283
+ Processing by AnyLogin::ApplicationController#any_login as HTML
284
+ Parameters: {"selected_id" => "10"}
285
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
286
+ Redirected to http://127.0.0.1:61283/
287
+ Completed 302 Found in 3ms (ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.0ms)
288
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:13:06 +0300
289
+ Processing by HomeController#index as HTML
290
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
291
+ ==> michaeljohn9@gmail.com
292
+ Rendering layout layouts/application.html.erb
293
+ Rendering home/index.html.erb within layouts/application
294
+ Rendered home/index.html.erb within layouts/application (Duration: 0.1ms | GC: 0.0ms)
295
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
296
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
297
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
298
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
299
+ User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
300
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
301
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.2ms | GC: 0.0ms)
302
+ Rendered shared/_footer.html.erb (Duration: 1.3ms | GC: 0.0ms)
303
+ Rendered layout layouts/application.html.erb (Duration: 1.5ms | GC: 0.0ms)
304
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms (3 queries, 0 cached) | GC: 0.0ms)
305
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:13:06 +0300
306
+ Processing by HomeController#about as HTML
307
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
308
+ ==> michaeljohn9@gmail.com
309
+ Rendering layout layouts/application.html.erb
310
+ Rendering home/about.html.erb within layouts/application
311
+ Rendered home/about.html.erb within layouts/application (Duration: 0.2ms | GC: 0.0ms)
312
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
313
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
314
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
315
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
316
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
317
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
318
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 7.1ms | GC: 0.0ms)
319
+ Rendered shared/_footer.html.erb (Duration: 7.2ms | GC: 0.0ms)
320
+ Rendered layout layouts/application.html.erb (Duration: 7.5ms | GC: 0.0ms)
321
+ Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.4ms (3 queries, 0 cached) | GC: 0.0ms)
322
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
323
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
324
+ ---------------------------------------------------------------------
325
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
326
+ ---------------------------------------------------------------------
327
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
328
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
329
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:13:06.757505"], ["updated_at", "2025-05-28 19:13:06.757505"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$vhqPmFWgoRyCxBaQDhF5HOT5ZpRb3wZfA.T8ihPB5Jw./bWs6B9NG"], ["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"], ["remember_token", "3071460c6fddb906b81b552243410660a522e1c7"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
330
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
331
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:13:06 +0300
332
+ Processing by HomeController#about as HTML
333
+ ==> No USER
334
+ Redirected to http://127.0.0.1:61283/sign_in
335
+ Filter chain halted as :require_login rendered or redirected
336
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms (0 queries, 0 cached) | GC: 0.0ms)
337
+ Started GET "/sign_in" for 127.0.0.1 at 2025-05-28 22:13:06 +0300
338
+ Processing by Clearance::SessionsController#new as HTML
339
+ ==> No USER
340
+ Rendering layout layouts/application.html.erb
341
+ Rendering /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application
342
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/_form.html.erb (Duration: 1.3ms | GC: 0.1ms)
343
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application (Duration: 1.9ms | GC: 0.1ms)
344
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
345
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
346
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
347
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
348
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
349
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.0ms | GC: 0.0ms)
350
+ Rendered shared/_footer.html.erb (Duration: 1.1ms | GC: 0.0ms)
351
+ Rendered layout layouts/application.html.erb (Duration: 3.2ms | GC: 0.1ms)
352
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.1ms)
353
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
354
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "schema_sha1"]]
355
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
356
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
357
+ -----------------------------------------------------------------------------------
358
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
359
+ -----------------------------------------------------------------------------------
360
+ TRANSACTION (0.6ms) SAVEPOINT active_record_1
361
+ User Exists? (2.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
362
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:13:22.149725"], ["updated_at", "2025-05-28 19:13:22.149725"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$Hhd6KyoqbbcIeD.kQ8Y8Ee4kOuuk/advMBnoDZW4NJJlFYOVxoLzG"], ["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"], ["remember_token", "29d1c4e94061adb78d85757af61c8459fc129a9a"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
363
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
364
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:13:22 +0300
365
+ Processing by HomeController#index as HTML
366
+ ==> No USER
367
+ Rendering layout layouts/application.html.erb
368
+ Rendering home/index.html.erb within layouts/application
369
+ Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | GC: 0.0ms)
370
+ Rendered shared/_header.html.erb (Duration: 0.1ms | GC: 0.0ms)
371
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
372
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
373
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.1ms | GC: 0.0ms)
374
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
375
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.2ms | GC: 0.0ms)
376
+ Rendered shared/_footer.html.erb (Duration: 2.6ms | GC: 0.0ms)
377
+ Rendered layout layouts/application.html.erb (Duration: 3.8ms | GC: 0.0ms)
378
+ Completed 200 OK in 15ms (Views: 5.7ms | ActiveRecord: 0.3ms (1 query, 0 cached) | GC: 0.0ms)
379
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2025-05-28 22:13:23 +0300
380
+ Processing by AnyLogin::ApplicationController#any_login as HTML
381
+ Parameters: {"selected_id" => "10"}
382
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
383
+ Redirected to http://127.0.0.1:61342/
384
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.0ms)
385
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:13:23 +0300
386
+ Processing by HomeController#index as HTML
387
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
388
+ ==> michaeljohn9@gmail.com
389
+ Rendering layout layouts/application.html.erb
390
+ Rendering home/index.html.erb within layouts/application
391
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | GC: 0.0ms)
392
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
393
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
394
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
395
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
396
+ User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
397
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
398
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.1ms | GC: 0.0ms)
399
+ Rendered shared/_footer.html.erb (Duration: 1.1ms | GC: 0.0ms)
400
+ Rendered layout layouts/application.html.erb (Duration: 1.3ms | GC: 0.0ms)
401
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms (3 queries, 0 cached) | GC: 0.0ms)
402
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:13:23 +0300
403
+ Processing by HomeController#about as HTML
404
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
405
+ ==> michaeljohn9@gmail.com
406
+ Rendering layout layouts/application.html.erb
407
+ Rendering home/about.html.erb within layouts/application
408
+ Rendered home/about.html.erb within layouts/application (Duration: 0.2ms | GC: 0.0ms)
409
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
410
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
411
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
412
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
413
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
414
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
415
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 6.8ms | GC: 0.0ms)
416
+ Rendered shared/_footer.html.erb (Duration: 7.0ms | GC: 0.0ms)
417
+ Rendered layout layouts/application.html.erb (Duration: 7.2ms | GC: 0.0ms)
418
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.3ms (3 queries, 0 cached) | GC: 0.1ms)
419
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
420
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
421
+ ---------------------------------------------------------------------
422
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
423
+ ---------------------------------------------------------------------
424
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
425
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
426
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:13:23.115093"], ["updated_at", "2025-05-28 19:13:23.115093"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$930sK523mU8agij3BPQO.eSSWwLv9vi3zP3OoboBY3301uMxPrCqq"], ["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"], ["remember_token", "550d09fc58167037aba225437144fd15cfc327be"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
427
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
428
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:13:23 +0300
429
+ Processing by HomeController#about as HTML
430
+ ==> No USER
431
+ Redirected to http://127.0.0.1:61342/sign_in
432
+ Filter chain halted as :require_login rendered or redirected
433
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms (0 queries, 0 cached) | GC: 0.0ms)
434
+ Started GET "/sign_in" for 127.0.0.1 at 2025-05-28 22:13:23 +0300
435
+ Processing by Clearance::SessionsController#new as HTML
436
+ ==> No USER
437
+ Rendering layout layouts/application.html.erb
438
+ Rendering /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application
439
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/_form.html.erb (Duration: 1.4ms | GC: 0.1ms)
440
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application (Duration: 1.7ms | GC: 0.1ms)
441
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
442
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
443
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
444
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
445
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
446
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.0ms | GC: 0.0ms)
447
+ Rendered shared/_footer.html.erb (Duration: 1.1ms | GC: 0.0ms)
448
+ Rendered layout layouts/application.html.erb (Duration: 3.0ms | GC: 0.1ms)
449
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.1ms)
450
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
451
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "schema_sha1"]]
452
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
453
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
454
+ ---------------------------------------------------------------------
455
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
456
+ ---------------------------------------------------------------------
457
+ TRANSACTION (0.7ms) SAVEPOINT active_record_1
458
+ User Exists? (2.7ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
459
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:13:45.378629"], ["updated_at", "2025-05-28 19:13:45.378629"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$uO8ycFXXQd1PAf.MXx9CtO.PExDVBx/Gm8apVjLOVHqZ0iHuav3c6"], ["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"], ["remember_token", "ec1775701931e4e0024108c28ff3cd652d2d6783"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
460
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
461
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:13:46 +0300
462
+ Processing by HomeController#about as HTML
463
+ ==> No USER
464
+ Redirected to http://127.0.0.1:61391/sign_in
465
+ Filter chain halted as :require_login rendered or redirected
466
+ Completed 302 Found in 9ms (ActiveRecord: 0.0ms (0 queries, 0 cached) | GC: 0.0ms)
467
+ Started GET "/sign_in" for 127.0.0.1 at 2025-05-28 22:13:46 +0300
468
+ Processing by Clearance::SessionsController#new as HTML
469
+ ==> No USER
470
+ Rendering layout layouts/application.html.erb
471
+ Rendering /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application
472
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/_form.html.erb (Duration: 1.4ms | GC: 0.0ms)
473
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application (Duration: 2.0ms | GC: 0.0ms)
474
+ Rendered shared/_header.html.erb (Duration: 0.1ms | GC: 0.0ms)
475
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
476
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
477
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.1ms | GC: 0.0ms)
478
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
479
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.3ms | GC: 0.0ms)
480
+ Rendered shared/_footer.html.erb (Duration: 2.7ms | GC: 0.0ms)
481
+ Rendered layout layouts/application.html.erb (Duration: 5.3ms | GC: 0.0ms)
482
+ Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.3ms (1 query, 0 cached) | GC: 0.0ms)
483
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
484
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
485
+ -----------------------------------------------------------------------------------
486
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
487
+ -----------------------------------------------------------------------------------
488
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
489
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
490
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:13:46.361687"], ["updated_at", "2025-05-28 19:13:46.361687"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$2GmiDXkDPkCTFQ4tyyU8duy9UJSIKEjVxrIG8idQvYunCSimc0ziK"], ["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"], ["remember_token", "5aea723711406678c77f5ab5fee31e10b92f0fcc"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
491
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
492
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:13:46 +0300
493
+ Processing by HomeController#index as HTML
494
+ ==> No USER
495
+ Rendering layout layouts/application.html.erb
496
+ Rendering home/index.html.erb within layouts/application
497
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | GC: 0.0ms)
498
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
499
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
500
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
501
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
502
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
503
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 0.7ms | GC: 0.0ms)
504
+ Rendered shared/_footer.html.erb (Duration: 0.8ms | GC: 0.0ms)
505
+ Rendered layout layouts/application.html.erb (Duration: 1.3ms | GC: 0.0ms)
506
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.0ms)
507
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2025-05-28 22:13:46 +0300
508
+ Processing by AnyLogin::ApplicationController#any_login as HTML
509
+ Parameters: {"selected_id" => "10", "id" => ""}
510
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
511
+ Redirected to http://127.0.0.1:61391/
512
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.0ms)
513
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:13:46 +0300
514
+ Processing by HomeController#index as HTML
515
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
516
+ ==> michaeljohn9@gmail.com
517
+ Rendering layout layouts/application.html.erb
518
+ Rendering home/index.html.erb within layouts/application
519
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | GC: 0.0ms)
520
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
521
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
522
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
523
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
524
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
525
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
526
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.4ms | GC: 0.0ms)
527
+ Rendered shared/_footer.html.erb (Duration: 3.4ms | GC: 0.0ms)
528
+ Rendered layout layouts/application.html.erb (Duration: 3.6ms | GC: 0.0ms)
529
+ Completed 200 OK in 7ms (Views: 3.5ms | ActiveRecord: 0.4ms (3 queries, 0 cached) | GC: 0.0ms)
530
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:13:46 +0300
531
+ Processing by HomeController#about as HTML
532
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
533
+ ==> michaeljohn9@gmail.com
534
+ Rendering layout layouts/application.html.erb
535
+ Rendering home/about.html.erb within layouts/application
536
+ Rendered home/about.html.erb within layouts/application (Duration: 0.1ms | GC: 0.0ms)
537
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
538
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
539
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.4ms | GC: 0.0ms)
540
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
541
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
542
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
543
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.0ms | GC: 0.1ms)
544
+ Rendered shared/_footer.html.erb (Duration: 2.4ms | GC: 0.1ms)
545
+ Rendered layout layouts/application.html.erb (Duration: 3.1ms | GC: 0.1ms)
546
+ Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.2ms (3 queries, 0 cached) | GC: 0.1ms)
547
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
548
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "schema_sha1"]]
549
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
550
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
551
+ -----------------------------------------------------------------------------------
552
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
553
+ -----------------------------------------------------------------------------------
554
+ TRANSACTION (0.6ms) SAVEPOINT active_record_1
555
+ User Exists? (2.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
556
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:16:26.503386"], ["updated_at", "2025-05-28 19:16:26.503386"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$xvkm0qTdmkXfeKK5OkY0kOapQpCyblPRzSJnTsBQ/G0L8g8.ZZFCm"], ["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"], ["remember_token", "ff98b42f5791d0b5447c54de616c30758aeed4b7"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
557
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
558
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:16:27 +0300
559
+ Processing by HomeController#index as HTML
560
+ ==> No USER
561
+ Rendering layout layouts/application.html.erb
562
+ Rendering home/index.html.erb within layouts/application
563
+ Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | GC: 0.0ms)
564
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
565
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.1ms | GC: 0.0ms)
566
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
567
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.1ms | GC: 0.0ms)
568
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
569
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.6ms | GC: 0.0ms)
570
+ Rendered shared/_footer.html.erb (Duration: 3.0ms | GC: 0.0ms)
571
+ Rendered layout layouts/application.html.erb (Duration: 4.1ms | GC: 0.0ms)
572
+ Completed 200 OK in 14ms (Views: 5.6ms | ActiveRecord: 0.3ms (1 query, 0 cached) | GC: 0.0ms)
573
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2025-05-28 22:16:27 +0300
574
+ Processing by AnyLogin::ApplicationController#any_login as HTML
575
+ Parameters: {"selected_id" => "10"}
576
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
577
+ Redirected to http://127.0.0.1:61494/
578
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.0ms)
579
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:16:27 +0300
580
+ Processing by HomeController#index as HTML
581
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
582
+ ==> michaeljohn9@gmail.com
583
+ Rendering layout layouts/application.html.erb
584
+ Rendering home/index.html.erb within layouts/application
585
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | GC: 0.0ms)
586
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
587
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
588
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
589
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
590
+ User Load (0.0ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
591
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
592
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.0ms | GC: 0.0ms)
593
+ Rendered shared/_footer.html.erb (Duration: 1.1ms | GC: 0.0ms)
594
+ Rendered layout layouts/application.html.erb (Duration: 1.2ms | GC: 0.0ms)
595
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms (3 queries, 0 cached) | GC: 0.0ms)
596
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:16:27 +0300
597
+ Processing by HomeController#about as HTML
598
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
599
+ ==> michaeljohn9@gmail.com
600
+ Rendering layout layouts/application.html.erb
601
+ Rendering home/about.html.erb within layouts/application
602
+ Rendered home/about.html.erb within layouts/application (Duration: 0.2ms | GC: 0.0ms)
603
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
604
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
605
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
606
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
607
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
608
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
609
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 5.7ms | GC: 0.2ms)
610
+ Rendered shared/_footer.html.erb (Duration: 5.8ms | GC: 0.2ms)
611
+ Rendered layout layouts/application.html.erb (Duration: 6.1ms | GC: 0.2ms)
612
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.3ms (3 queries, 0 cached) | GC: 0.2ms)
613
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
614
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
615
+ ---------------------------------------------------------------------
616
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
617
+ ---------------------------------------------------------------------
618
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
619
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
620
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:16:27.852390"], ["updated_at", "2025-05-28 19:16:27.852390"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$KBFEll/Nu8ZNRe51pCLt2uriUKfrVRTGxOtCRtgetM7DvQHslpWEK"], ["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"], ["remember_token", "8f512d9e94209dc913ae6e4f9c5200bb53f931cd"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
621
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
622
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:16:27 +0300
623
+ Processing by HomeController#about as HTML
624
+ ==> No USER
625
+ Redirected to http://127.0.0.1:61494/sign_in
626
+ Filter chain halted as :require_login rendered or redirected
627
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms (0 queries, 0 cached) | GC: 0.0ms)
628
+ Started GET "/sign_in" for 127.0.0.1 at 2025-05-28 22:16:27 +0300
629
+ Processing by Clearance::SessionsController#new as HTML
630
+ ==> No USER
631
+ Rendering layout layouts/application.html.erb
632
+ Rendering /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application
633
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/_form.html.erb (Duration: 1.8ms | GC: 0.0ms)
634
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application (Duration: 2.5ms | GC: 0.1ms)
635
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
636
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
637
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
638
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
639
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
640
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.0ms | GC: 0.0ms)
641
+ Rendered shared/_footer.html.erb (Duration: 1.1ms | GC: 0.0ms)
642
+ Rendered layout layouts/application.html.erb (Duration: 3.8ms | GC: 0.1ms)
643
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.1ms)
644
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
645
+ 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"]]
646
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
647
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
648
+ ---------------------------------------------------------------------
649
+ NavigationTest: test_user_cannot_navigate_to_about_page_without_login
650
+ ---------------------------------------------------------------------
651
+ TRANSACTION (0.6ms) SAVEPOINT active_record_1
652
+ User Exists? (2.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
653
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:23:36.218627"], ["updated_at", "2025-05-28 19:23:36.218627"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$BE/wmuJ3xerEAjYbajtvn.SsUPykvK1BZK2PkRK0enFoTayyqAUBe"], ["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"], ["remember_token", "99b9e0f442a74a3a0b42ea78f8ff552862f8f6c7"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
654
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
655
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:23:36 +0300
656
+ Processing by HomeController#about as HTML
657
+ ==> No USER
658
+ Redirected to http://127.0.0.1:63042/sign_in
659
+ Filter chain halted as :require_login rendered or redirected
660
+ Completed 302 Found in 9ms (ActiveRecord: 0.0ms (0 queries, 0 cached) | GC: 0.0ms)
661
+ Started GET "/sign_in" for 127.0.0.1 at 2025-05-28 22:23:36 +0300
662
+ Processing by Clearance::SessionsController#new as HTML
663
+ ==> No USER
664
+ Rendering layout layouts/application.html.erb
665
+ Rendering /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application
666
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/_form.html.erb (Duration: 1.2ms | GC: 0.0ms)
667
+ Rendered /Users/igor/.asdf/installs/ruby/3.4.1/lib/ruby/gems/3.4.0/gems/clearance-2.10.0/app/views/sessions/new.html.erb within layouts/application (Duration: 2.1ms | GC: 0.0ms)
668
+ Rendered shared/_header.html.erb (Duration: 0.1ms | GC: 0.0ms)
669
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.1ms | GC: 0.0ms)
670
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.1ms | GC: 0.0ms)
671
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.1ms | GC: 0.0ms)
672
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
673
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.5ms | GC: 0.0ms)
674
+ Rendered shared/_footer.html.erb (Duration: 2.9ms | GC: 0.0ms)
675
+ Rendered layout layouts/application.html.erb (Duration: 5.5ms | GC: 0.0ms)
676
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.3ms (1 query, 0 cached) | GC: 0.0ms)
677
+ TRANSACTION (0.1ms) ROLLBACK TRANSACTION
678
+ TRANSACTION (0.0ms) BEGIN deferred TRANSACTION
679
+ -----------------------------------------------------------------------------------
680
+ NavigationTest: test_it_properly_logs_users_in_and_allows_access_to_the_secret_page
681
+ -----------------------------------------------------------------------------------
682
+ TRANSACTION (0.0ms) SAVEPOINT active_record_1
683
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
684
+ User Create (0.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", "remember_token", "login", "crypted_password", "password_salt", "persistence_token", "login_count", "failed_login_count", "last_request_at", "current_login_at", "last_login_at", "current_login_ip", "last_login_ip", "confirmation_token") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) RETURNING "id" [["name", "test"], ["age", nil], ["created_at", "2025-05-28 19:23:37.144203"], ["updated_at", "2025-05-28 19:23:37.144203"], ["email", "test@test.com"], ["encrypted_password", "$2a$04$RK1srM6NDI9PT8lyzIBa4OTSqSePOlhMKdAIm4znOdxK2O9kg8/wy"], ["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"], ["remember_token", "6425ee3627e7bf346cbf210545887afd0d0a2bed"], ["login", nil], ["crypted_password", nil], ["password_salt", nil], ["persistence_token", nil], ["login_count", nil], ["failed_login_count", nil], ["last_request_at", nil], ["current_login_at", nil], ["last_login_at", nil], ["current_login_ip", nil], ["last_login_ip", nil], ["confirmation_token", nil]]
685
+ TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1
686
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:23:37 +0300
687
+ Processing by HomeController#index as HTML
688
+ ==> No USER
689
+ Rendering layout layouts/application.html.erb
690
+ Rendering home/index.html.erb within layouts/application
691
+ Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | GC: 0.0ms)
692
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
693
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
694
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
695
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
696
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
697
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 0.9ms | GC: 0.0ms)
698
+ Rendered shared/_footer.html.erb (Duration: 1.0ms | GC: 0.0ms)
699
+ Rendered layout layouts/application.html.erb (Duration: 1.7ms | GC: 0.0ms)
700
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.0ms)
701
+ Started POST "/any_login/any_login/sign_in" for 127.0.0.1 at 2025-05-28 22:23:37 +0300
702
+ Processing by AnyLogin::ApplicationController#any_login as HTML
703
+ Parameters: {"selected_id" => "10", "id" => ""}
704
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]]
705
+ Redirected to http://127.0.0.1:63042/
706
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms (1 query, 0 cached) | GC: 0.0ms)
707
+ Started GET "/" for 127.0.0.1 at 2025-05-28 22:23:37 +0300
708
+ Processing by HomeController#index as HTML
709
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
710
+ ==> michaeljohn9@gmail.com
711
+ Rendering layout layouts/application.html.erb
712
+ Rendering home/index.html.erb within layouts/application
713
+ Rendered home/index.html.erb within layouts/application (Duration: 0.0ms | GC: 0.0ms)
714
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
715
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
716
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | GC: 0.0ms)
717
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
718
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
719
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
720
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 2.8ms | GC: 0.0ms)
721
+ Rendered shared/_footer.html.erb (Duration: 4.0ms | GC: 0.0ms)
722
+ Rendered layout layouts/application.html.erb (Duration: 4.1ms | GC: 0.0ms)
723
+ Completed 200 OK in 8ms (Views: 4.1ms | ActiveRecord: 0.4ms (3 queries, 0 cached) | GC: 0.0ms)
724
+ Started GET "/about" for 127.0.0.1 at 2025-05-28 22:23:37 +0300
725
+ Processing by HomeController#about as HTML
726
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["remember_token", "577264c575d5009bb9788288265502fc63ae7c30"], ["LIMIT", 1]]
727
+ ==> michaeljohn9@gmail.com
728
+ Rendering layout layouts/application.html.erb
729
+ Rendering home/about.html.erb within layouts/application
730
+ Rendered home/about.html.erb within layouts/application (Duration: 0.1ms | GC: 0.0ms)
731
+ Rendered shared/_header.html.erb (Duration: 0.0ms | GC: 0.0ms)
732
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | GC: 0.0ms)
733
+ Rendered /Users/igor/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.1ms | GC: 0.0ms)
734
+ Rendered /Users/igor/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | GC: 0.0ms)
735
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
736
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 10], ["LIMIT", 1]]
737
+ Rendered /Users/igor/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 1.2ms | GC: 0.0ms)
738
+ Rendered shared/_footer.html.erb (Duration: 1.3ms | GC: 0.0ms)
739
+ Rendered layout layouts/application.html.erb (Duration: 1.7ms | GC: 0.0ms)
740
+ Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.3ms (3 queries, 0 cached) | GC: 0.0ms)
741
+ TRANSACTION (0.0ms) ROLLBACK TRANSACTION
742
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT * FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? ORDER BY "ar_internal_metadata"."key" ASC LIMIT 1 [[nil, "environment"]]
743
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
744
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC