samvera-persona 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4314f79bfe27cb989a624e8e48fdc15224374034a3579abc0d2aa631a3a88a8
4
- data.tar.gz: 650cdefb84773b695fd2b440451911608af3fff706fc891e0d0e1e441e723cd7
3
+ metadata.gz: a0fbd666954eadbdd46a0a0a0f11fcd8ca56d6b93d1b7cfec42171126e964132
4
+ data.tar.gz: b78063111bb7cc53ea05793a38a92d0f1661dab479d3b538b70f7a3e243093ad
5
5
  SHA512:
6
- metadata.gz: 7e3e51455b5170072a9f4237f9e105b06ba4dbca4c1d43fa153abdb30bc0ba0a663e02ca7e2508efe60f96818abd65c03101fea805cdc245675376b71c938c93
7
- data.tar.gz: d6417f262b1bed1f28ea5fc787e04dc1755cf100d13b4e4b68fe207215310ddc6163d8099cdcf8c926317cfd2fc98508f8af6e8ec392e9ab1cc264f93856c5e3
6
+ metadata.gz: a93ba65801a34931dc20d7cac39f6579b033364e5a75c59af408e05b15bc1b92eb7d8ae44179b14cd3c95a1afe62117bc89dfe13fec10e14db12943e7f3e9059
7
+ data.tar.gz: 42d33fd31eacd53fcf8433a0b4d0288c8c6861f6c88f2830ee606dbe60d6d75f01e5a7f1d32ec69be02e40741203943591f1c02e0c3264af113a6fa03517b440
@@ -8,7 +8,11 @@ module Samvera
8
8
  isolate_namespace Samvera::Persona
9
9
 
10
10
  initializer :append_migrations do |app|
11
- unless app.root.to_s.match root.to_s
11
+ # only add the migrations if they are not already copied
12
+ # via the rake task. Allows gem to work both with the install:migrations
13
+ # and without it.
14
+ if !app.root.to_s.match(root.to_s) &&
15
+ !app.root.join('db/migrate').glob("*.samvera_persona.rb").size > 0
12
16
  config.paths["db/migrate"].expanded.each do |expanded_path|
13
17
  app.config.paths["db/migrate"] << expanded_path
14
18
  end
@@ -1,5 +1,5 @@
1
1
  module Samvera
2
2
  module Persona
3
- VERSION = '0.1.1'
3
+ VERSION = '0.1.2'
4
4
  end
5
5
  end
Binary file
@@ -16246,3 +16246,855 @@ Completed 200 OK in 24ms (Views: 17.7ms | ActiveRecord: 0.1ms)
16246
16246
  User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-08 22:36:58.538365"], ["updated_at", "2019-07-08 22:36:58.538365"], ["email", "email-56@test.com"], ["encrypted_password", "$2a$04$ODTNP5t2RoY2Czst0PZoCutg7jc.UeqMDxPkV69cUMUfgnjcnjXIy"]]
16247
16247
   (0.1ms) RELEASE SAVEPOINT active_record_1
16248
16248
   (0.4ms) rollback transaction
16249
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
16250
+  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
16251
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
16252
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
16253
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
16254
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
16255
+  (0.1ms) DROP TABLE IF EXISTS "users"
16256
+  (0.1ms) SELECT sqlite_version(*)
16257
+  (1.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "deleted_at" datetime, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "invitation_token" varchar, "invitation_created_at" datetime, "invitation_sent_at" datetime, "invitation_accepted_at" datetime, "invitation_limit" integer, "invited_by_type" varchar, "invited_by_id" integer, "invitations_count" integer DEFAULT 0)
16258
+  (0.9ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
16259
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
16260
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
16261
+  (0.9ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
16262
+  (0.7ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
16263
+  (1.0ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
16264
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
16265
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
16266
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
16267
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
16268
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES
16269
+ (20190513181646),
16270
+ (20190628003608),
16271
+ (20190520170817);
16272
+
16273
+ 
16274
+  (1.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
16275
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
16276
+  (0.0ms) begin transaction
16277
+ ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-07-15 22:01:23.821112"], ["updated_at", "2019-07-15 22:01:23.821112"]]
16278
+  (0.7ms) commit transaction
16279
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
16280
+  (0.0ms) begin transaction
16281
+  (0.0ms) commit transaction
16282
+  (0.0ms) begin transaction
16283
+  (0.1ms) SAVEPOINT active_record_1
16284
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-1@test.com"], ["LIMIT", 1]]
16285
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.864181"], ["updated_at", "2019-07-15 22:01:25.864181"], ["email", "email-1@test.com"], ["encrypted_password", "$2a$04$Unl/wHuxTpnL1X0gbe8YROMwTqoD7luqFHsXwxW21/8ZkL0ybyFAS"]]
16286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16287
+ Processing by Samvera::Persona::UsersController#destroy as HTML
16288
+ Parameters: {"id"=>"1"}
16289
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
16290
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
16291
+  (0.0ms) SAVEPOINT active_record_1
16292
+ User Update (0.1ms) UPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["deleted_at", "2019-07-15 22:01:25.874828"], ["updated_at", "2019-07-15 22:01:25.874849"], ["id", 1]]
16293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16294
+ Redirected to http://test.host/persona/users
16295
+ Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
16296
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
16297
+  (0.3ms) rollback transaction
16298
+  (0.0ms) begin transaction
16299
+  (0.0ms) SAVEPOINT active_record_1
16300
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-2@test.com"], ["LIMIT", 1]]
16301
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.900270"], ["updated_at", "2019-07-15 22:01:25.900270"], ["email", "email-2@test.com"], ["encrypted_password", "$2a$04$FsjDEzz6xb1gDHM4e.by2ufS9rn9xLyBVdOAtM2zVzcv6M39AMYRu"]]
16302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16303
+ Processing by Samvera::Persona::UsersController#destroy as HTML
16304
+ Parameters: {"id"=>"1"}
16305
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
16306
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
16307
+  (0.0ms) SAVEPOINT active_record_1
16308
+ User Update (0.1ms) UPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["deleted_at", "2019-07-15 22:01:25.903307"], ["updated_at", "2019-07-15 22:01:25.903317"], ["id", 1]]
16309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16310
+ Redirected to http://test.host/persona/users
16311
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
16312
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
16313
+  (0.3ms) rollback transaction
16314
+  (0.0ms) begin transaction
16315
+  (0.0ms) SAVEPOINT active_record_1
16316
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-3@test.com"], ["LIMIT", 1]]
16317
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.908369"], ["updated_at", "2019-07-15 22:01:25.908369"], ["email", "email-3@test.com"], ["encrypted_password", "$2a$04$3v8blexaKSVXjmueZ6YKO.gZB/bz3rElo1Q7bsimnsF2epNR6z.fy"]]
16318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16319
+ Processing by Samvera::Persona::UsersController#destroy as HTML
16320
+ Parameters: {"id"=>"1"}
16321
+ Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms)
16322
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
16323
+  (0.5ms) rollback transaction
16324
+  (0.1ms) begin transaction
16325
+  (0.1ms) SAVEPOINT active_record_1
16326
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-4@test.com"], ["LIMIT", 1]]
16327
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.920989"], ["updated_at", "2019-07-15 22:01:25.920989"], ["email", "email-4@test.com"], ["encrypted_password", "$2a$04$fOdbcsT5qJauakaYwtNE9OUklDwKHYy0wZ60xaLG6AxoCPYICLOAK"]]
16328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16329
+  (0.0ms) SAVEPOINT active_record_1
16330
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-5@test.com"], ["LIMIT", 1]]
16331
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.924565"], ["updated_at", "2019-07-15 22:01:25.924565"], ["email", "email-5@test.com"], ["encrypted_password", "$2a$04$S2A0DW2rl7xWEg3G7OqOFOKl/vRchyertilm/lKS5rC5ydtyI5CIu"]]
16332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16333
+ Processing by Samvera::Persona::UsersController#stop_impersonating as HTML
16334
+ Parameters: {"id"=>"2"}
16335
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
16336
+ Redirected to http://test.host/persona/users
16337
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
16338
+  (0.4ms) rollback transaction
16339
+  (0.0ms) begin transaction
16340
+  (0.0ms) SAVEPOINT active_record_1
16341
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-6@test.com"], ["LIMIT", 1]]
16342
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.931130"], ["updated_at", "2019-07-15 22:01:25.931130"], ["email", "email-6@test.com"], ["encrypted_password", "$2a$04$vF0zKGb3wqKyo48F4U9Z5uOekmy.bzXjqlWljpYIcSJVtb1tI.OXG"]]
16343
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16344
+  (0.1ms) SAVEPOINT active_record_1
16345
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-7@test.com"], ["LIMIT", 1]]
16346
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.935148"], ["updated_at", "2019-07-15 22:01:25.935148"], ["email", "email-7@test.com"], ["encrypted_password", "$2a$04$dfP86JNkaLgwx8JtGx0v1O4uz5Ukzi80VlTaW2xRL1w5Dy7E7vCyK"]]
16347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16348
+ Processing by Samvera::Persona::UsersController#impersonate as HTML
16349
+ Parameters: {"id"=>"2"}
16350
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
16351
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
16352
+ Redirected to http://test.host/
16353
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
16354
+  (0.5ms) rollback transaction
16355
+  (0.1ms) begin transaction
16356
+  (0.1ms) SAVEPOINT active_record_1
16357
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-8@test.com"], ["LIMIT", 1]]
16358
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.943597"], ["updated_at", "2019-07-15 22:01:25.943597"], ["email", "email-8@test.com"], ["encrypted_password", "$2a$04$x3v4DVs1dN42TjKXqwI7ae3uAngPHqjZRbKs7jaBjlayHGQI5UgWK"]]
16359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16360
+ Processing by Samvera::Persona::UsersController#index as HTML
16361
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
16362
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application
16363
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
16364
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application (0.6ms)
16365
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
16366
+ Completed 200 OK in 23ms (Views: 18.0ms | ActiveRecord: 0.1ms)
16367
+  (0.6ms) rollback transaction
16368
+  (0.1ms) begin transaction
16369
+  (0.1ms) SAVEPOINT active_record_1
16370
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-9@test.com"], ["LIMIT", 1]]
16371
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.975602"], ["updated_at", "2019-07-15 22:01:25.975602"], ["email", "email-9@test.com"], ["encrypted_password", "$2a$04$4VKF23GgWMcCDJzKILNsFO3fALiNAF4HvEAFiaqY6XsyXI5WN.OBq"]]
16372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16373
+  (0.0ms) SAVEPOINT active_record_1
16374
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-10@test.com"], ["LIMIT", 1]]
16375
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.978983"], ["updated_at", "2019-07-15 22:01:25.978983"], ["email", "email-10@test.com"], ["encrypted_password", "$2a$04$.cCvxgLQRwc9UkcKYvX2cOqlmOoG28qfudlzWIToEiOx7AqsGXwNa"]]
16376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16377
+  (0.4ms) rollback transaction
16378
+  (0.0ms) begin transaction
16379
+  (0.0ms) SAVEPOINT active_record_1
16380
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-11@test.com"], ["LIMIT", 1]]
16381
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.995305"], ["updated_at", "2019-07-15 22:01:25.995305"], ["email", "email-11@test.com"], ["encrypted_password", "$2a$04$aaJxZavln5egaFXYIQB9fe0/YvE5I86tWoRzKN31F8Bk.DQlmgy16"]]
16382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16383
+  (0.1ms) SAVEPOINT active_record_1
16384
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-12@test.com"], ["LIMIT", 1]]
16385
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:25.999400"], ["updated_at", "2019-07-15 22:01:25.999400"], ["email", "email-12@test.com"], ["encrypted_password", "$2a$04$MyViJLctoFwjXFw.LNQyfuhpZfXc4eDk2z88UU7GP8mD8UGjwv41i"]]
16386
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16387
+  (0.4ms) rollback transaction
16388
+  (0.0ms) begin transaction
16389
+  (0.1ms) SAVEPOINT active_record_1
16390
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-13@test.com"], ["LIMIT", 1]]
16391
+ User Create (0.6ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.005381"], ["updated_at", "2019-07-15 22:01:26.005381"], ["email", "email-13@test.com"], ["encrypted_password", "$2a$04$BSA0lt2YHWFvmW0NE2JmkOkeD.ZWtL8qTC8/lcKWcnBJZkbXe9Eea"]]
16392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16393
+  (0.0ms) SAVEPOINT active_record_1
16394
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-14@test.com"], ["LIMIT", 1]]
16395
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.008975"], ["updated_at", "2019-07-15 22:01:26.008975"], ["email", "email-14@test.com"], ["encrypted_password", "$2a$04$f1/C9xJoBEUZyNJhRRzjEuFj8rw.SddCAh5PoBujF/WLKe.sc1puq"]]
16396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16397
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL
16398
+  (0.4ms) rollback transaction
16399
+  (0.0ms) begin transaction
16400
+  (0.0ms) SAVEPOINT active_record_1
16401
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-15@test.com"], ["LIMIT", 1]]
16402
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.013976"], ["updated_at", "2019-07-15 22:01:26.013976"], ["email", "email-15@test.com"], ["encrypted_password", "$2a$04$3umte9XhfSmG089EvF8bIeSepDH9/aEoou7zYToj7Q4RVTxMvejWS"]]
16403
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16404
+  (0.0ms) SAVEPOINT active_record_1
16405
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-16@test.com"], ["LIMIT", 1]]
16406
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.017336"], ["updated_at", "2019-07-15 22:01:26.017336"], ["email", "email-16@test.com"], ["encrypted_password", "$2a$04$ytRHiBzQC51YebD38lh3AOg8Nx7d46g0cEakHi1s/hYgRFNmLBpVm"]]
16407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16408
+  (0.3ms) rollback transaction
16409
+  (0.0ms) begin transaction
16410
+  (0.0ms) SAVEPOINT active_record_1
16411
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-17@test.com"], ["LIMIT", 1]]
16412
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.023738"], ["updated_at", "2019-07-15 22:01:26.023738"], ["email", "email-17@test.com"], ["encrypted_password", "$2a$04$UB2j1Fkp1otclwThAOJ3D.yOqU5ilrkEe3mmzOixCFoNfP4Ylbh9q"]]
16413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16414
+  (0.0ms) SAVEPOINT active_record_1
16415
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-18@test.com"], ["LIMIT", 1]]
16416
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.027082"], ["updated_at", "2019-07-15 22:01:26.027082"], ["email", "email-18@test.com"], ["encrypted_password", "$2a$04$4QKOv1qAkj7itVr93hY0d.sq2hwtvIODrWjihBkBAF9pBl7BFe18K"]]
16417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16418
+  (0.0ms) SAVEPOINT active_record_1
16419
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-19@test.com"], ["LIMIT", 1]]
16420
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.030115"], ["updated_at", "2019-07-15 22:01:26.030115"], ["email", "email-19@test.com"], ["encrypted_password", "$2a$04$WcQ7TT274pyZGpK9cP9MauVcQmaRUQ9loj9mcL5RHCHTQmN4EWlIS"]]
16421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16422
+  (0.1ms) SAVEPOINT active_record_1
16423
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-20@test.com"], ["LIMIT", 1]]
16424
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.033954"], ["updated_at", "2019-07-15 22:01:26.033954"], ["email", "email-20@test.com"], ["encrypted_password", "$2a$04$xOS6daQ9VSNQqJNAugZX6.xXyVsc8tSbNPmVaNJsdxswuDU3pcCQ2"]]
16425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16426
+  (0.1ms) SAVEPOINT active_record_1
16427
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-21@test.com"], ["LIMIT", 1]]
16428
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.037633"], ["updated_at", "2019-07-15 22:01:26.037633"], ["email", "email-21@test.com"], ["encrypted_password", "$2a$04$6/QOLbzQjICQfvkxnXF2D.oalrIHkL9thtfcYZvU/ww9BZNlIijo6"]]
16429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16430
+  (0.0ms) SAVEPOINT active_record_1
16431
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-22@test.com"], ["LIMIT", 1]]
16432
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.040822"], ["updated_at", "2019-07-15 22:01:26.040822"], ["email", "email-22@test.com"], ["encrypted_password", "$2a$04$0tO9IEBNT16.YMXhXiLj1.1T.cTZE5hogNoyV4BkSnGhCMBw3mRGu"]]
16433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16434
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-23@test.com"], ["LIMIT", 1]]
16435
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "df0b541090b2751795b99fb4d7e05e2b88c2c5382f040e24d090d5affac8a1c1"], ["LIMIT", 1]]
16436
+  (0.0ms) SAVEPOINT active_record_1
16437
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.135480"], ["updated_at", "2019-07-15 22:01:26.135480"], ["email", "email-23@test.com"], ["encrypted_password", "$2a$04$AxVZ1xcBVTERXZeVwUBh1O8OustCc8W4x1YCFUMZVeJcUWyIwOsOe"], ["invitation_token", "df0b541090b2751795b99fb4d7e05e2b88c2c5382f040e24d090d5affac8a1c1"], ["invitation_created_at", "2019-07-15 22:01:26.135222"], ["invitation_sent_at", "2019-07-15 22:01:26.135222"]]
16438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16439
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16440
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (2.3ms)
16441
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16442
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.6ms)
16443
+ Devise::Mailer#invitation_instructions: processed outbound mail in 190.6ms
16444
+ Sent mail to email-23@test.com (8.1ms)
16445
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16446
+ From: please-change-me-at-config-initializers-devise@example.com
16447
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16448
+ To: email-23@test.com
16449
+ Message-ID: <5d2cf7b6510f5_12f3b3fdfb1036e18496c0@citron.local.mail>
16450
+ Subject: Invitation instructions
16451
+ Mime-Version: 1.0
16452
+ Content-Type: multipart/alternative;
16453
+ boundary="--==_mimepart_5d2cf7b64fafb_12f3b3fdfb1036e18495d3";
16454
+ charset=UTF-8
16455
+ Content-Transfer-Encoding: 7bit
16456
+
16457
+
16458
+ ----==_mimepart_5d2cf7b64fafb_12f3b3fdfb1036e18495d3
16459
+ Content-Type: text/plain;
16460
+ charset=UTF-8
16461
+ Content-Transfer-Encoding: 7bit
16462
+
16463
+ Hello email-23@test.com
16464
+
16465
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
16466
+
16467
+ http://localhost:3000/users/invitation/accept?invitation_token=pbCLTXCagKsyPGb_EPGs
16468
+
16469
+
16470
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
16471
+
16472
+ ----==_mimepart_5d2cf7b64fafb_12f3b3fdfb1036e18495d3
16473
+ Content-Type: text/html;
16474
+ charset=UTF-8
16475
+ Content-Transfer-Encoding: 7bit
16476
+
16477
+ <p>Hello email-23@test.com</p>
16478
+
16479
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
16480
+
16481
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=pbCLTXCagKsyPGb_EPGs">Accept invitation</a></p>
16482
+
16483
+
16484
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
16485
+
16486
+ ----==_mimepart_5d2cf7b64fafb_12f3b3fdfb1036e18495d3--
16487
+
16488
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-24@test.com"], ["LIMIT", 1]]
16489
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "1e58fb8b163111f23a27fad7f372a48c0e87c784cd3dffe2b8b093e0559f3cc6"], ["LIMIT", 1]]
16490
+  (0.0ms) SAVEPOINT active_record_1
16491
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.338383"], ["updated_at", "2019-07-15 22:01:26.338383"], ["email", "email-24@test.com"], ["encrypted_password", "$2a$04$O3XDIi4VRd5HJ0BzBPey0.G1h1ofX0lvY6NmPcbd.ITLmm/EvPPUm"], ["invitation_token", "1e58fb8b163111f23a27fad7f372a48c0e87c784cd3dffe2b8b093e0559f3cc6"], ["invitation_created_at", "2019-07-15 22:01:26.338112"], ["invitation_sent_at", "2019-07-15 22:01:26.338112"]]
16492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16493
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16494
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
16495
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16496
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
16497
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.6ms
16498
+ Sent mail to email-24@test.com (2.5ms)
16499
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16500
+ From: please-change-me-at-config-initializers-devise@example.com
16501
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16502
+ To: email-24@test.com
16503
+ Message-ID: <5d2cf7b653a2b_12f3b3fdfb1036e18498c5@citron.local.mail>
16504
+ Subject: Invitation instructions
16505
+ Mime-Version: 1.0
16506
+ Content-Type: multipart/alternative;
16507
+ boundary="--==_mimepart_5d2cf7b653416_12f3b3fdfb1036e18497cd";
16508
+ charset=UTF-8
16509
+ Content-Transfer-Encoding: 7bit
16510
+
16511
+
16512
+ ----==_mimepart_5d2cf7b653416_12f3b3fdfb1036e18497cd
16513
+ Content-Type: text/plain;
16514
+ charset=UTF-8
16515
+ Content-Transfer-Encoding: 7bit
16516
+
16517
+ Hello email-24@test.com
16518
+
16519
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
16520
+
16521
+ http://localhost:3000/users/invitation/accept?invitation_token=12Kq7Eq4HjqbtfQ-cgLD
16522
+
16523
+
16524
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
16525
+
16526
+ ----==_mimepart_5d2cf7b653416_12f3b3fdfb1036e18497cd
16527
+ Content-Type: text/html;
16528
+ charset=UTF-8
16529
+ Content-Transfer-Encoding: 7bit
16530
+
16531
+ <p>Hello email-24@test.com</p>
16532
+
16533
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
16534
+
16535
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=12Kq7Eq4HjqbtfQ-cgLD">Accept invitation</a></p>
16536
+
16537
+
16538
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
16539
+
16540
+ ----==_mimepart_5d2cf7b653416_12f3b3fdfb1036e18497cd--
16541
+
16542
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
16543
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.4ms)
16544
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.5ms)
16545
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (196.7ms)
16546
+  (0.4ms) rollback transaction
16547
+  (0.0ms) begin transaction
16548
+  (0.1ms) SAVEPOINT active_record_1
16549
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-25@test.com"], ["LIMIT", 1]]
16550
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.550308"], ["updated_at", "2019-07-15 22:01:26.550308"], ["email", "email-25@test.com"], ["encrypted_password", "$2a$04$SpcMott0hJ2lYawNjuvgEucOCyLPd9thib8AOJRhLtKbS0zljducq"]]
16551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16552
+  (0.0ms) SAVEPOINT active_record_1
16553
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-26@test.com"], ["LIMIT", 1]]
16554
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.553054"], ["updated_at", "2019-07-15 22:01:26.553054"], ["email", "email-26@test.com"], ["encrypted_password", "$2a$04$8Jl0BQlnN76oq4ElugjhXuUA/ZO4tZu0Fihge/Z/VbYa19ylTjwT."]]
16555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16556
+  (0.0ms) SAVEPOINT active_record_1
16557
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-27@test.com"], ["LIMIT", 1]]
16558
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.555481"], ["updated_at", "2019-07-15 22:01:26.555481"], ["email", "email-27@test.com"], ["encrypted_password", "$2a$04$Bi3UskeSHZ3vgW5pbHfWPuoGRLfeofVc2OJriQg13p1VBDj9GwhtC"]]
16559
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16560
+  (0.0ms) SAVEPOINT active_record_1
16561
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-28@test.com"], ["LIMIT", 1]]
16562
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.558023"], ["updated_at", "2019-07-15 22:01:26.558023"], ["email", "email-28@test.com"], ["encrypted_password", "$2a$04$OebVPFVQCeZi3Tkb64unE.6Ts0IZyLRb9rMELh3h/FYb9DwwsDGYO"]]
16563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16564
+  (0.1ms) SAVEPOINT active_record_1
16565
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-29@test.com"], ["LIMIT", 1]]
16566
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.560608"], ["updated_at", "2019-07-15 22:01:26.560608"], ["email", "email-29@test.com"], ["encrypted_password", "$2a$04$4Q9jPT27Kn/8Qm0yF3OZQe4xS8FrWhnwZpMb2ltM8RAMtrbW.8Jny"]]
16567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16568
+  (0.1ms) SAVEPOINT active_record_1
16569
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-30@test.com"], ["LIMIT", 1]]
16570
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.563529"], ["updated_at", "2019-07-15 22:01:26.563529"], ["email", "email-30@test.com"], ["encrypted_password", "$2a$04$PDM6WXEGNja.qlcXnvEsDeOHeCqihXESWc36Si8X/GEWPeSGwYJTe"]]
16571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16572
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-31@test.com"], ["LIMIT", 1]]
16573
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "3f0288f3336d11a24674c62fc25ea35510c82a65a0e6d8d6e94392cfb7035ff1"], ["LIMIT", 1]]
16574
+  (0.1ms) SAVEPOINT active_record_1
16575
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.568118"], ["updated_at", "2019-07-15 22:01:26.568118"], ["email", "email-31@test.com"], ["encrypted_password", "$2a$04$vIkSi7kJ9jKOcWxxHPRnx.2yyGRsamzRN6RQj1v97lFwNwbRqR8b6"], ["invitation_token", "3f0288f3336d11a24674c62fc25ea35510c82a65a0e6d8d6e94392cfb7035ff1"], ["invitation_created_at", "2019-07-15 22:01:26.567747"], ["invitation_sent_at", "2019-07-15 22:01:26.567747"]]
16576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16577
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16578
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
16579
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16580
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
16581
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.1ms
16582
+ Sent mail to email-31@test.com (2.6ms)
16583
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16584
+ From: please-change-me-at-config-initializers-devise@example.com
16585
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16586
+ To: email-31@test.com
16587
+ Message-ID: <5d2cf7b68bf0b_12f3b3fdfb1036e1850072@citron.local.mail>
16588
+ Subject: Invitation instructions
16589
+ Mime-Version: 1.0
16590
+ Content-Type: multipart/alternative;
16591
+ boundary="--==_mimepart_5d2cf7b68b832_12f3b3fdfb1036e184994b";
16592
+ charset=UTF-8
16593
+ Content-Transfer-Encoding: 7bit
16594
+
16595
+
16596
+ ----==_mimepart_5d2cf7b68b832_12f3b3fdfb1036e184994b
16597
+ Content-Type: text/plain;
16598
+ charset=UTF-8
16599
+ Content-Transfer-Encoding: 7bit
16600
+
16601
+ Hello email-31@test.com
16602
+
16603
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
16604
+
16605
+ http://localhost:3000/users/invitation/accept?invitation_token=PCRGCbfMUxRNWfMPz1uq
16606
+
16607
+
16608
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
16609
+
16610
+ ----==_mimepart_5d2cf7b68b832_12f3b3fdfb1036e184994b
16611
+ Content-Type: text/html;
16612
+ charset=UTF-8
16613
+ Content-Transfer-Encoding: 7bit
16614
+
16615
+ <p>Hello email-31@test.com</p>
16616
+
16617
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
16618
+
16619
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=PCRGCbfMUxRNWfMPz1uq">Accept invitation</a></p>
16620
+
16621
+
16622
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
16623
+
16624
+ ----==_mimepart_5d2cf7b68b832_12f3b3fdfb1036e184994b--
16625
+
16626
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-32@test.com"], ["LIMIT", 1]]
16627
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "7260a76748187d3acba29ecb23f376f94ac1dabaaa4ccb6d54724ce8612fe2e9"], ["LIMIT", 1]]
16628
+  (0.0ms) SAVEPOINT active_record_1
16629
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.578160"], ["updated_at", "2019-07-15 22:01:26.578160"], ["email", "email-32@test.com"], ["encrypted_password", "$2a$04$so8bjjm/Q2KltR1mcAcEFe6KmFcSu61h1QpGxq2BA9bP2IRlORT.C"], ["invitation_token", "7260a76748187d3acba29ecb23f376f94ac1dabaaa4ccb6d54724ce8612fe2e9"], ["invitation_created_at", "2019-07-15 22:01:26.577883"], ["invitation_sent_at", "2019-07-15 22:01:26.577883"]]
16630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16631
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16632
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
16633
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16634
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
16635
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.5ms
16636
+ Sent mail to email-32@test.com (2.3ms)
16637
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16638
+ From: please-change-me-at-config-initializers-devise@example.com
16639
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16640
+ To: email-32@test.com
16641
+ Message-ID: <5d2cf7b68e29f_12f3b3fdfb1036e1850255@citron.local.mail>
16642
+ Subject: Invitation instructions
16643
+ Mime-Version: 1.0
16644
+ Content-Type: multipart/alternative;
16645
+ boundary="--==_mimepart_5d2cf7b68dc92_12f3b3fdfb1036e18501be";
16646
+ charset=UTF-8
16647
+ Content-Transfer-Encoding: 7bit
16648
+
16649
+
16650
+ ----==_mimepart_5d2cf7b68dc92_12f3b3fdfb1036e18501be
16651
+ Content-Type: text/plain;
16652
+ charset=UTF-8
16653
+ Content-Transfer-Encoding: 7bit
16654
+
16655
+ Hello email-32@test.com
16656
+
16657
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
16658
+
16659
+ http://localhost:3000/users/invitation/accept?invitation_token=xrx1zpv-qoyHNxFuESRM
16660
+
16661
+
16662
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
16663
+
16664
+ ----==_mimepart_5d2cf7b68dc92_12f3b3fdfb1036e18501be
16665
+ Content-Type: text/html;
16666
+ charset=UTF-8
16667
+ Content-Transfer-Encoding: 7bit
16668
+
16669
+ <p>Hello email-32@test.com</p>
16670
+
16671
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
16672
+
16673
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=xrx1zpv-qoyHNxFuESRM">Accept invitation</a></p>
16674
+
16675
+
16676
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
16677
+
16678
+ ----==_mimepart_5d2cf7b68dc92_12f3b3fdfb1036e18501be--
16679
+
16680
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
16681
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
16682
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
16683
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (6.4ms)
16684
+  (0.4ms) rollback transaction
16685
+  (0.0ms) begin transaction
16686
+  (0.0ms) SAVEPOINT active_record_1
16687
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-33@test.com"], ["LIMIT", 1]]
16688
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.595385"], ["updated_at", "2019-07-15 22:01:26.595385"], ["email", "email-33@test.com"], ["encrypted_password", "$2a$04$d9tY94nH7Lq/n./sz67YZOG4Hk75xaSDmyD.Yq5C2thQzMDYxF83O"]]
16689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16690
+  (0.0ms) SAVEPOINT active_record_1
16691
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-34@test.com"], ["LIMIT", 1]]
16692
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.598197"], ["updated_at", "2019-07-15 22:01:26.598197"], ["email", "email-34@test.com"], ["encrypted_password", "$2a$04$rDMnrJYol0R0YrusqBvA3.cVVQ5u/bsoyFPk6Z6lN5Sf.9Jea1eKS"]]
16693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16694
+  (0.0ms) SAVEPOINT active_record_1
16695
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-35@test.com"], ["LIMIT", 1]]
16696
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.600596"], ["updated_at", "2019-07-15 22:01:26.600596"], ["email", "email-35@test.com"], ["encrypted_password", "$2a$04$/l25Ph3rN4FxnfFZsbYLsu9X46R6PjL4dkKdeCenqc4rNjNC6ByBu"]]
16697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16698
+  (0.0ms) SAVEPOINT active_record_1
16699
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-36@test.com"], ["LIMIT", 1]]
16700
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.602978"], ["updated_at", "2019-07-15 22:01:26.602978"], ["email", "email-36@test.com"], ["encrypted_password", "$2a$04$NaauC5oD1kAvwgtj56wiY.2OEZN5bt7.BRlJDh29ghiU3PqroIOVq"]]
16701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16702
+  (0.0ms) SAVEPOINT active_record_1
16703
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-37@test.com"], ["LIMIT", 1]]
16704
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.605406"], ["updated_at", "2019-07-15 22:01:26.605406"], ["email", "email-37@test.com"], ["encrypted_password", "$2a$04$C3zMmOZjYMZafKgO4ZvGu.0/OoyTc.5ReA.dIfpDDWsdY/lpHwuUu"]]
16705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16706
+  (0.0ms) SAVEPOINT active_record_1
16707
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-38@test.com"], ["LIMIT", 1]]
16708
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.607784"], ["updated_at", "2019-07-15 22:01:26.607784"], ["email", "email-38@test.com"], ["encrypted_password", "$2a$04$L4LVSQUgoD2flqSDR.2S1eXJejI2LUAygrqXj6ZvdIENAO2.wibHC"]]
16709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16710
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-39@test.com"], ["LIMIT", 1]]
16711
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "feb9a3a01ad3b463edef0dfe6a371b8570f6ea6fdfa7eee53320e43e6020d8ba"], ["LIMIT", 1]]
16712
+  (0.0ms) SAVEPOINT active_record_1
16713
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.611234"], ["updated_at", "2019-07-15 22:01:26.611234"], ["email", "email-39@test.com"], ["encrypted_password", "$2a$04$EBqzMRrx70BnABNmqIa/C.pNy4jUTnIr3sXnFb0nwUn4/Oy2Ft69i"], ["invitation_token", "feb9a3a01ad3b463edef0dfe6a371b8570f6ea6fdfa7eee53320e43e6020d8ba"], ["invitation_created_at", "2019-07-15 22:01:26.610971"], ["invitation_sent_at", "2019-07-15 22:01:26.610971"]]
16714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16715
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16716
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
16717
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16718
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
16719
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.1ms
16720
+ Sent mail to email-39@test.com (3.5ms)
16721
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16722
+ From: please-change-me-at-config-initializers-devise@example.com
16723
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16724
+ To: email-39@test.com
16725
+ Message-ID: <5d2cf7b69674c_12f3b3fdfb1036e1850454@citron.local.mail>
16726
+ Subject: Invitation instructions
16727
+ Mime-Version: 1.0
16728
+ Content-Type: multipart/alternative;
16729
+ boundary="--==_mimepart_5d2cf7b695fa7_12f3b3fdfb1036e18503de";
16730
+ charset=UTF-8
16731
+ Content-Transfer-Encoding: 7bit
16732
+
16733
+
16734
+ ----==_mimepart_5d2cf7b695fa7_12f3b3fdfb1036e18503de
16735
+ Content-Type: text/plain;
16736
+ charset=UTF-8
16737
+ Content-Transfer-Encoding: 7bit
16738
+
16739
+ Hello email-39@test.com
16740
+
16741
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
16742
+
16743
+ http://localhost:3000/users/invitation/accept?invitation_token=KZWxpQ1Yhj7mDzhajmsm
16744
+
16745
+
16746
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
16747
+
16748
+ ----==_mimepart_5d2cf7b695fa7_12f3b3fdfb1036e18503de
16749
+ Content-Type: text/html;
16750
+ charset=UTF-8
16751
+ Content-Transfer-Encoding: 7bit
16752
+
16753
+ <p>Hello email-39@test.com</p>
16754
+
16755
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
16756
+
16757
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=KZWxpQ1Yhj7mDzhajmsm">Accept invitation</a></p>
16758
+
16759
+
16760
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
16761
+
16762
+ ----==_mimepart_5d2cf7b695fa7_12f3b3fdfb1036e18503de--
16763
+
16764
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-40@test.com"], ["LIMIT", 1]]
16765
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "b36b57c9ba18b26ad71eec66fa0dd7160d41cefb97ede491eaeb6fc3d49c36ea"], ["LIMIT", 1]]
16766
+  (0.0ms) SAVEPOINT active_record_1
16767
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.622617"], ["updated_at", "2019-07-15 22:01:26.622617"], ["email", "email-40@test.com"], ["encrypted_password", "$2a$04$F4qfiWxM1bgSODXnhcn.vendqv8Vuv8SV1Pf83MzP84F6Qza5Q0fC"], ["invitation_token", "b36b57c9ba18b26ad71eec66fa0dd7160d41cefb97ede491eaeb6fc3d49c36ea"], ["invitation_created_at", "2019-07-15 22:01:26.622313"], ["invitation_sent_at", "2019-07-15 22:01:26.622313"]]
16768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16769
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16770
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
16771
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16772
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
16773
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
16774
+ Sent mail to email-40@test.com (2.7ms)
16775
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16776
+ From: please-change-me-at-config-initializers-devise@example.com
16777
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16778
+ To: email-40@test.com
16779
+ Message-ID: <5d2cf7b69917d_12f3b3fdfb1036e18506f3@citron.local.mail>
16780
+ Subject: Invitation instructions
16781
+ Mime-Version: 1.0
16782
+ Content-Type: multipart/alternative;
16783
+ boundary="--==_mimepart_5d2cf7b698add_12f3b3fdfb1036e1850537";
16784
+ charset=UTF-8
16785
+ Content-Transfer-Encoding: 7bit
16786
+
16787
+
16788
+ ----==_mimepart_5d2cf7b698add_12f3b3fdfb1036e1850537
16789
+ Content-Type: text/plain;
16790
+ charset=UTF-8
16791
+ Content-Transfer-Encoding: 7bit
16792
+
16793
+ Hello email-40@test.com
16794
+
16795
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
16796
+
16797
+ http://localhost:3000/users/invitation/accept?invitation_token=Uw_oLyAM9Km9Sjv3jcLp
16798
+
16799
+
16800
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
16801
+
16802
+ ----==_mimepart_5d2cf7b698add_12f3b3fdfb1036e1850537
16803
+ Content-Type: text/html;
16804
+ charset=UTF-8
16805
+ Content-Transfer-Encoding: 7bit
16806
+
16807
+ <p>Hello email-40@test.com</p>
16808
+
16809
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
16810
+
16811
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=Uw_oLyAM9Km9Sjv3jcLp">Accept invitation</a></p>
16812
+
16813
+
16814
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
16815
+
16816
+ ----==_mimepart_5d2cf7b698add_12f3b3fdfb1036e1850537--
16817
+
16818
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
16819
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
16820
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
16821
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (6.6ms)
16822
+  (0.3ms) rollback transaction
16823
+  (0.0ms) begin transaction
16824
+  (0.0ms) SAVEPOINT active_record_1
16825
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-41@test.com"], ["LIMIT", 1]]
16826
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.641106"], ["updated_at", "2019-07-15 22:01:26.641106"], ["email", "email-41@test.com"], ["encrypted_password", "$2a$04$YASTF88oTi3jRMFoUtWmE.ZqpRA3Tr7fmi6K4DYM5v8HUkmTYPF8G"]]
16827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16828
+  (0.0ms) SAVEPOINT active_record_1
16829
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-42@test.com"], ["LIMIT", 1]]
16830
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.644106"], ["updated_at", "2019-07-15 22:01:26.644106"], ["email", "email-42@test.com"], ["encrypted_password", "$2a$04$JhrYj79Deus47JBfkjB53.Yg7fvxkPq7OKeLqOyr/2RXd4T/P0EbW"]]
16831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16832
+  (0.1ms) SAVEPOINT active_record_1
16833
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-43@test.com"], ["LIMIT", 1]]
16834
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.647121"], ["updated_at", "2019-07-15 22:01:26.647121"], ["email", "email-43@test.com"], ["encrypted_password", "$2a$04$s1L5rVXCFPVzg6dgfon8auXPXLwmAuRd/eMvgaz8mWcH.rr8vY1tS"]]
16835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16836
+  (0.1ms) SAVEPOINT active_record_1
16837
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-44@test.com"], ["LIMIT", 1]]
16838
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.650588"], ["updated_at", "2019-07-15 22:01:26.650588"], ["email", "email-44@test.com"], ["encrypted_password", "$2a$04$py5aazLGH1q43k2NnY8/XO8YDNF4rm/1H5tE7dmMD7YhOPQufX4bO"]]
16839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16840
+  (0.1ms) SAVEPOINT active_record_1
16841
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-45@test.com"], ["LIMIT", 1]]
16842
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.653943"], ["updated_at", "2019-07-15 22:01:26.653943"], ["email", "email-45@test.com"], ["encrypted_password", "$2a$04$QmvqQ3pHOkZUh8KFJmDYwOgcNwlTFguPdcZCJctPkUPmmcVWEbrYS"]]
16843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16844
+  (0.0ms) SAVEPOINT active_record_1
16845
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-46@test.com"], ["LIMIT", 1]]
16846
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.656863"], ["updated_at", "2019-07-15 22:01:26.656863"], ["email", "email-46@test.com"], ["encrypted_password", "$2a$04$AONIzhZ/23g1w4uur9mFh.x8qsLamEFExtVDIG14pKvPL2yK1oJWe"]]
16847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16848
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-47@test.com"], ["LIMIT", 1]]
16849
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "02271ca6e51fbca29f817891627f96d12a63475d6a0db26d99a21ab2f5813ad4"], ["LIMIT", 1]]
16850
+  (0.0ms) SAVEPOINT active_record_1
16851
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.660522"], ["updated_at", "2019-07-15 22:01:26.660522"], ["email", "email-47@test.com"], ["encrypted_password", "$2a$04$d1WOmrVf2m5Wz8b50HuHhOqTsmRCHSZLVwLgkSU2/eWEWMnJmJfGe"], ["invitation_token", "02271ca6e51fbca29f817891627f96d12a63475d6a0db26d99a21ab2f5813ad4"], ["invitation_created_at", "2019-07-15 22:01:26.660285"], ["invitation_sent_at", "2019-07-15 22:01:26.660285"]]
16852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16853
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16854
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.6ms)
16855
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16856
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
16857
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
16858
+ Sent mail to email-47@test.com (2.3ms)
16859
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16860
+ From: please-change-me-at-config-initializers-devise@example.com
16861
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16862
+ To: email-47@test.com
16863
+ Message-ID: <5d2cf7b6a2542_12f3b3fdfb1036e18508f3@citron.local.mail>
16864
+ Subject: Invitation instructions
16865
+ Mime-Version: 1.0
16866
+ Content-Type: multipart/alternative;
16867
+ boundary="--==_mimepart_5d2cf7b6a1f58_12f3b3fdfb1036e1850744";
16868
+ charset=UTF-8
16869
+ Content-Transfer-Encoding: 7bit
16870
+
16871
+
16872
+ ----==_mimepart_5d2cf7b6a1f58_12f3b3fdfb1036e1850744
16873
+ Content-Type: text/plain;
16874
+ charset=UTF-8
16875
+ Content-Transfer-Encoding: 7bit
16876
+
16877
+ Hello email-47@test.com
16878
+
16879
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
16880
+
16881
+ http://localhost:3000/users/invitation/accept?invitation_token=L7SzS9kx6Vx7S19_Azu9
16882
+
16883
+
16884
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
16885
+
16886
+ ----==_mimepart_5d2cf7b6a1f58_12f3b3fdfb1036e1850744
16887
+ Content-Type: text/html;
16888
+ charset=UTF-8
16889
+ Content-Transfer-Encoding: 7bit
16890
+
16891
+ <p>Hello email-47@test.com</p>
16892
+
16893
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
16894
+
16895
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=L7SzS9kx6Vx7S19_Azu9">Accept invitation</a></p>
16896
+
16897
+
16898
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
16899
+
16900
+ ----==_mimepart_5d2cf7b6a1f58_12f3b3fdfb1036e1850744--
16901
+
16902
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-48@test.com"], ["LIMIT", 1]]
16903
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "2135e33ac0ebec378e4b9baac7b5ca7f385224eaf28a5f5d75e83462e5a5332e"], ["LIMIT", 1]]
16904
+  (0.0ms) SAVEPOINT active_record_1
16905
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.672475"], ["updated_at", "2019-07-15 22:01:26.672475"], ["email", "email-48@test.com"], ["encrypted_password", "$2a$04$zycdkW8g/x8DMcUrG5CmF.hwrEfetDurGmxcIF6/69nvwQ.TIYfIS"], ["invitation_token", "2135e33ac0ebec378e4b9baac7b5ca7f385224eaf28a5f5d75e83462e5a5332e"], ["invitation_created_at", "2019-07-15 22:01:26.672219"], ["invitation_sent_at", "2019-07-15 22:01:26.672219"]]
16906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16907
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16908
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
16909
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16910
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
16911
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.5ms
16912
+ Sent mail to email-48@test.com (2.4ms)
16913
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16914
+ From: please-change-me-at-config-initializers-devise@example.com
16915
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16916
+ To: email-48@test.com
16917
+ Message-ID: <5d2cf7b6a535c_12f3b3fdfb1036e18510d8@citron.local.mail>
16918
+ Subject: Invitation instructions
16919
+ Mime-Version: 1.0
16920
+ Content-Type: multipart/alternative;
16921
+ boundary="--==_mimepart_5d2cf7b6a4d19_12f3b3fdfb1036e1850965";
16922
+ charset=UTF-8
16923
+ Content-Transfer-Encoding: 7bit
16924
+
16925
+
16926
+ ----==_mimepart_5d2cf7b6a4d19_12f3b3fdfb1036e1850965
16927
+ Content-Type: text/plain;
16928
+ charset=UTF-8
16929
+ Content-Transfer-Encoding: 7bit
16930
+
16931
+ Hello email-48@test.com
16932
+
16933
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
16934
+
16935
+ http://localhost:3000/users/invitation/accept?invitation_token=ByGUUXJcEPT14iyetxG8
16936
+
16937
+
16938
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
16939
+
16940
+ ----==_mimepart_5d2cf7b6a4d19_12f3b3fdfb1036e1850965
16941
+ Content-Type: text/html;
16942
+ charset=UTF-8
16943
+ Content-Transfer-Encoding: 7bit
16944
+
16945
+ <p>Hello email-48@test.com</p>
16946
+
16947
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
16948
+
16949
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=ByGUUXJcEPT14iyetxG8">Accept invitation</a></p>
16950
+
16951
+
16952
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
16953
+
16954
+ ----==_mimepart_5d2cf7b6a4d19_12f3b3fdfb1036e1850965--
16955
+
16956
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
16957
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
16958
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
16959
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (6.5ms)
16960
+  (0.3ms) rollback transaction
16961
+  (0.0ms) begin transaction
16962
+  (0.0ms) SAVEPOINT active_record_1
16963
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-49@test.com"], ["LIMIT", 1]]
16964
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.690376"], ["updated_at", "2019-07-15 22:01:26.690376"], ["email", "email-49@test.com"], ["encrypted_password", "$2a$04$yPAz2u/Upd3Ytr/2CaLF1unxlwSMSthINrdgq05D3gINhQ1zGW8Iq"]]
16965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16966
+  (0.0ms) SAVEPOINT active_record_1
16967
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-50@test.com"], ["LIMIT", 1]]
16968
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.693284"], ["updated_at", "2019-07-15 22:01:26.693284"], ["email", "email-50@test.com"], ["encrypted_password", "$2a$04$7kjY5Z5Frh6iEfHxwFUtQOgsWjsdg2Xr2Ag4pWJ31oKxCJnw5w9q6"]]
16969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16970
+  (0.1ms) SAVEPOINT active_record_1
16971
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-51@test.com"], ["LIMIT", 1]]
16972
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.696411"], ["updated_at", "2019-07-15 22:01:26.696411"], ["email", "email-51@test.com"], ["encrypted_password", "$2a$04$qU6FToUn6zaOfyBY5UxMrOCfOoHrzwwcg5tBnbM46HGyc86LLzaeK"]]
16973
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16974
+  (0.1ms) SAVEPOINT active_record_1
16975
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-52@test.com"], ["LIMIT", 1]]
16976
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.700011"], ["updated_at", "2019-07-15 22:01:26.700011"], ["email", "email-52@test.com"], ["encrypted_password", "$2a$04$/yt3NA/rL1oX7IGt60WqrO8jLbbC9a6UVAByTqizgMrNsSEqQc81O"]]
16977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16978
+  (0.1ms) SAVEPOINT active_record_1
16979
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-53@test.com"], ["LIMIT", 1]]
16980
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.703403"], ["updated_at", "2019-07-15 22:01:26.703403"], ["email", "email-53@test.com"], ["encrypted_password", "$2a$04$.qhxpRU4nxwHzdhI7wZxhOfbvV4rQOOzVeIHbgbFPHdAkE4YOeWUy"]]
16981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16982
+  (0.0ms) SAVEPOINT active_record_1
16983
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-54@test.com"], ["LIMIT", 1]]
16984
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.706253"], ["updated_at", "2019-07-15 22:01:26.706253"], ["email", "email-54@test.com"], ["encrypted_password", "$2a$04$tl.aS0XYEdeieexcUGUbzeVIZLQ4AaZCpXLzQ/o5P7bzPPhvm11Iu"]]
16985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16986
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-55@test.com"], ["LIMIT", 1]]
16987
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "4e30958e3b32e1894c25cf5396c9723cbe6202f75f49e17cf5c0d5d0ca4a8289"], ["LIMIT", 1]]
16988
+  (0.0ms) SAVEPOINT active_record_1
16989
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.710031"], ["updated_at", "2019-07-15 22:01:26.710031"], ["email", "email-55@test.com"], ["encrypted_password", "$2a$04$ExoP6kwGc3eTdSVW7RDXo.PB48rKF6NJCArHlkkvtWgpc4bWMItdq"], ["invitation_token", "4e30958e3b32e1894c25cf5396c9723cbe6202f75f49e17cf5c0d5d0ca4a8289"], ["invitation_created_at", "2019-07-15 22:01:26.709743"], ["invitation_sent_at", "2019-07-15 22:01:26.709743"]]
16990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16991
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
16992
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
16993
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
16994
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
16995
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
16996
+ Sent mail to email-55@test.com (2.6ms)
16997
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
16998
+ From: please-change-me-at-config-initializers-devise@example.com
16999
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17000
+ To: email-55@test.com
17001
+ Message-ID: <5d2cf7b6ae713_12f3b3fdfb1036e185129b@citron.local.mail>
17002
+ Subject: Invitation instructions
17003
+ Mime-Version: 1.0
17004
+ Content-Type: multipart/alternative;
17005
+ boundary="--==_mimepart_5d2cf7b6ae073_12f3b3fdfb1036e185117f";
17006
+ charset=UTF-8
17007
+ Content-Transfer-Encoding: 7bit
17008
+
17009
+
17010
+ ----==_mimepart_5d2cf7b6ae073_12f3b3fdfb1036e185117f
17011
+ Content-Type: text/plain;
17012
+ charset=UTF-8
17013
+ Content-Transfer-Encoding: 7bit
17014
+
17015
+ Hello email-55@test.com
17016
+
17017
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17018
+
17019
+ http://localhost:3000/users/invitation/accept?invitation_token=bE1TfD6QWSjY67xqt1xr
17020
+
17021
+
17022
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
17023
+
17024
+ ----==_mimepart_5d2cf7b6ae073_12f3b3fdfb1036e185117f
17025
+ Content-Type: text/html;
17026
+ charset=UTF-8
17027
+ Content-Transfer-Encoding: 7bit
17028
+
17029
+ <p>Hello email-55@test.com</p>
17030
+
17031
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17032
+
17033
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=bE1TfD6QWSjY67xqt1xr">Accept invitation</a></p>
17034
+
17035
+
17036
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
17037
+
17038
+ ----==_mimepart_5d2cf7b6ae073_12f3b3fdfb1036e185117f--
17039
+
17040
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."email" = ? ORDER BY "users"."id" ASC LIMIT ? [["email", "email-56@test.com"], ["LIMIT", 1]]
17041
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."invitation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["invitation_token", "44dfb1b7a8f840f05cd192e17a369e7f52972e0f8712b474c3a02bc1f115ea8d"], ["LIMIT", 1]]
17042
+  (0.0ms) SAVEPOINT active_record_1
17043
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-07-15 22:01:26.719382"], ["updated_at", "2019-07-15 22:01:26.719382"], ["email", "email-56@test.com"], ["encrypted_password", "$2a$04$P/ujtU9Jlk5d4kcdQo7n4eGi680UdGRe3GbEqy.1ZrcKy767TceFi"], ["invitation_token", "44dfb1b7a8f840f05cd192e17a369e7f52972e0f8712b474c3a02bc1f115ea8d"], ["invitation_created_at", "2019-07-15 22:01:26.719145"], ["invitation_sent_at", "2019-07-15 22:01:26.719145"]]
17044
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17045
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17046
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
17047
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17048
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
17049
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.5ms
17050
+ Sent mail to email-56@test.com (2.5ms)
17051
+ Date: Mon, 15 Jul 2019 15:01:26 -0700
17052
+ From: please-change-me-at-config-initializers-devise@example.com
17053
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17054
+ To: email-56@test.com
17055
+ Message-ID: <5d2cf7b6b0a85_12f3b3fdfb1036e185148b@citron.local.mail>
17056
+ Subject: Invitation instructions
17057
+ Mime-Version: 1.0
17058
+ Content-Type: multipart/alternative;
17059
+ boundary="--==_mimepart_5d2cf7b6b040d_12f3b3fdfb1036e18513e8";
17060
+ charset=UTF-8
17061
+ Content-Transfer-Encoding: 7bit
17062
+
17063
+
17064
+ ----==_mimepart_5d2cf7b6b040d_12f3b3fdfb1036e18513e8
17065
+ Content-Type: text/plain;
17066
+ charset=UTF-8
17067
+ Content-Transfer-Encoding: 7bit
17068
+
17069
+ Hello email-56@test.com
17070
+
17071
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17072
+
17073
+ http://localhost:3000/users/invitation/accept?invitation_token=nswQqi98fjMySZA-6-sw
17074
+
17075
+
17076
+ If you don't want to accept the invitation, please ignore this email. Your account won't be created until you access the link above and set your password.
17077
+
17078
+ ----==_mimepart_5d2cf7b6b040d_12f3b3fdfb1036e18513e8
17079
+ Content-Type: text/html;
17080
+ charset=UTF-8
17081
+ Content-Transfer-Encoding: 7bit
17082
+
17083
+ <p>Hello email-56@test.com</p>
17084
+
17085
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17086
+
17087
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=nswQqi98fjMySZA-6-sw">Accept invitation</a></p>
17088
+
17089
+
17090
+ <p>If you don&#39;t want to accept the invitation, please ignore this email. Your account won&#39;t be created until you access the link above and set your password.</p>
17091
+
17092
+ ----==_mimepart_5d2cf7b6b040d_12f3b3fdfb1036e18513e8--
17093
+
17094
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
17095
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
17096
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.1/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
17097
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (6.4ms)
17098
+  (0.4ms) rollback transaction
17099
+  (0.0ms) begin transaction
17100
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: samvera-persona
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Kaufman
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-07-08 00:00:00.000000000 Z
12
+ date: 2019-07-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails