samvera-persona 0.1.5 → 0.1.6

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: d8d4e6ad468b435d973c55e22b3385a9aeef8880832b4d96b2bc8f40e5e725a8
4
- data.tar.gz: 24ac459c50833e19eca11b950fe616e4059a0a44dbccaea250ecf1524c51849e
3
+ metadata.gz: 22bdbf0d7ddcc9d015cb2f914bd5db28853641595979a53fb6b903f6c356b19c
4
+ data.tar.gz: fc750acb576e08506115328e8424c7d0844ef07ccc2db2b2d95b0ff864569419
5
5
  SHA512:
6
- metadata.gz: 05a2ce74f143fade51e0e8f512572c9751d353719e4dbded6e01efda6d52d6814b3e3e7d5af1ea03e26c30c9876c652467e30fd9d3668da0a1c04b02ac319bcf
7
- data.tar.gz: b24a733374a09483b627d6a0b8b9a184fe50e8d83ce89f63f555f407dd63325daacc66ce82ff2fc3f731cec7bff01138fad25b58dcb85bfbf25d403df148d32e
6
+ metadata.gz: '0924183183b1f1713fd3a8776ce8c079458db193e62c0ae45320399720e54183d9c19eb302d08f01734d63769c0b19b037cb5048992fe530746709db6727df3f'
7
+ data.tar.gz: ee8ef11b0ff8dde2a54d84a4f0d51eed920890bb6fd4da0c79b5038d2a14781910e7ebd119085bd99b87b5e0474777cd7c04d2fbd771475d3367ca683069cac3
@@ -48,7 +48,7 @@ module Samvera
48
48
  end
49
49
 
50
50
  config.to_prepare do
51
- User.send :include, Samvera::Persona::SoftDeleteBehavior
51
+ User.send :include, Samvera::Persona::SoftDeleteBehavior if Samvera::Persona.soft_delete
52
52
  User.send :include, Samvera::Persona::UsernameBehavior
53
53
  end
54
54
 
@@ -1,5 +1,5 @@
1
1
  module Samvera
2
2
  module Persona
3
- VERSION = '0.1.5'
3
+ VERSION = '0.1.6'
4
4
  end
5
5
  end
@@ -7,5 +7,14 @@ Gem.loaded_specs['samvera-persona'].dependencies.each do |d|
7
7
 
8
8
  module Samvera
9
9
  module Persona
10
+ class << self
11
+ mattr_accessor :soft_delete
12
+ self.soft_delete = true
13
+
14
+ def setup
15
+ yield self
16
+ end
17
+ end
18
+
10
19
  end
11
20
  end
Binary file
@@ -17098,3 +17098,855 @@ Content-Transfer-Encoding: 7bit
17098
17098
   (0.4ms) rollback transaction
17099
17099
   (0.0ms) begin transaction
17100
17100
   (0.1ms) rollback transaction
17101
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
17102
+  (0.9ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
17103
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
17104
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
17105
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
17106
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
17107
+  (0.1ms) DROP TABLE IF EXISTS "users"
17108
+  (0.1ms) SELECT sqlite_version(*)
17109
+  (1.4ms) 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)
17110
+  (0.9ms) CREATE INDEX "index_users_on_deleted_at" ON "users" ("deleted_at")
17111
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
17112
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
17113
+  (0.9ms) CREATE INDEX "index_users_on_invitations_count" ON "users" ("invitations_count")
17114
+  (0.9ms) CREATE INDEX "index_users_on_invited_by_id" ON "users" ("invited_by_id")
17115
+  (0.8ms) CREATE INDEX "index_users_on_invited_by_type_and_invited_by_id" ON "users" ("invited_by_type", "invited_by_id")
17116
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
17117
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
17118
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
17119
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190628003746)
17120
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES
17121
+ (20190513181646),
17122
+ (20190628003608),
17123
+ (20190520170817);
17124
+
17125
+ 
17126
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
17127
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
17128
+  (0.0ms) begin transaction
17129
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-09-02 00:24:51.136480"], ["updated_at", "2019-09-02 00:24:51.136480"]]
17130
+  (0.7ms) commit transaction
17131
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
17132
+  (0.0ms) begin transaction
17133
+  (0.0ms) commit transaction
17134
+  (0.0ms) begin transaction
17135
+  (0.0ms) rollback transaction
17136
+  (0.0ms) begin transaction
17137
+  (0.1ms) SAVEPOINT active_record_1
17138
+ 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]]
17139
+ User Create (0.6ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.323926"], ["updated_at", "2019-09-02 00:24:53.323926"], ["email", "email-1@test.com"], ["encrypted_password", "$2a$04$65FlGNS299fvBiDd5/TgK.vQpi3390aZzH/yedbUwmT55hSC4ah3e"]]
17140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17141
+ Processing by Samvera::Persona::UsersController#index as HTML
17142
+ 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]]
17143
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application
17144
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
17145
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb within layouts/application (0.3ms)
17146
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
17147
+ Completed 200 OK in 25ms (Views: 18.2ms | ActiveRecord: 0.1ms)
17148
+  (0.4ms) rollback transaction
17149
+  (0.1ms) begin transaction
17150
+  (0.1ms) SAVEPOINT active_record_1
17151
+ 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]]
17152
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.358490"], ["updated_at", "2019-09-02 00:24:53.358490"], ["email", "email-2@test.com"], ["encrypted_password", "$2a$04$De3rlX04G3U15JTkkcaLkeOVynNW0p1JRDmETC9mxICRDSg2lZw16"]]
17153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17154
+ Processing by Samvera::Persona::UsersController#destroy as HTML
17155
+ Parameters: {"id"=>"1"}
17156
+ Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms)
17157
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
17158
+  (0.4ms) rollback transaction
17159
+  (0.0ms) begin transaction
17160
+  (0.1ms) SAVEPOINT active_record_1
17161
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-3@test.com"], ["LIMIT", 1]]
17162
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.394393"], ["updated_at", "2019-09-02 00:24:53.394393"], ["email", "email-3@test.com"], ["encrypted_password", "$2a$04$apXIvz9nz2rBSxoGUd2e4eaCz9JUxNtUYu5/0Wfy/Sm2n8mZ/0uwW"]]
17163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17164
+ Processing by Samvera::Persona::UsersController#destroy as HTML
17165
+ Parameters: {"id"=>"1"}
17166
+ 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]]
17167
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
17168
+  (0.1ms) SAVEPOINT active_record_1
17169
+ User Update (0.2ms) UPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["deleted_at", "2019-09-02 00:24:53.399377"], ["updated_at", "2019-09-02 00:24:53.399401"], ["id", 1]]
17170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17171
+ Redirected to http://test.host/persona/users
17172
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
17173
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
17174
+  (0.4ms) rollback transaction
17175
+  (0.0ms) begin transaction
17176
+  (0.0ms) SAVEPOINT active_record_1
17177
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-4@test.com"], ["LIMIT", 1]]
17178
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.408800"], ["updated_at", "2019-09-02 00:24:53.408800"], ["email", "email-4@test.com"], ["encrypted_password", "$2a$04$35hncgiyhTC5SI6iIwvYMu9KkOu4G6geu0TlVMqaDAT2lh5WQu5EK"]]
17179
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17180
+ Processing by Samvera::Persona::UsersController#destroy as HTML
17181
+ Parameters: {"id"=>"1"}
17182
+ 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]]
17183
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
17184
+  (0.0ms) SAVEPOINT active_record_1
17185
+ User Update (0.1ms) UPDATE "users" SET "deleted_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["deleted_at", "2019-09-02 00:24:53.412698"], ["updated_at", "2019-09-02 00:24:53.412709"], ["id", 1]]
17186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17187
+ Redirected to http://test.host/persona/users
17188
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
17189
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
17190
+  (0.4ms) rollback transaction
17191
+  (0.0ms) begin transaction
17192
+  (0.1ms) SAVEPOINT active_record_1
17193
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-5@test.com"], ["LIMIT", 1]]
17194
+ User Create (0.6ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.419288"], ["updated_at", "2019-09-02 00:24:53.419288"], ["email", "email-5@test.com"], ["encrypted_password", "$2a$04$jfia461CQgULzIB8MbE9cuFjKUNz.JiWOOPI0mcZnuNpxTJ883Msa"]]
17195
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17196
+  (0.1ms) SAVEPOINT active_record_1
17197
+ 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]]
17198
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.423645"], ["updated_at", "2019-09-02 00:24:53.423645"], ["email", "email-6@test.com"], ["encrypted_password", "$2a$04$oaTlcV0lc4rFMB42umAJQ.i6VHy.QkkHVmQMovjShFRH/6F7Qx3my"]]
17199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17200
+ Processing by Samvera::Persona::UsersController#stop_impersonating as HTML
17201
+ Parameters: {"id"=>"2"}
17202
+ 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]]
17203
+ Redirected to http://test.host/persona/users
17204
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
17205
+  (0.4ms) rollback transaction
17206
+  (0.0ms) begin transaction
17207
+  (0.0ms) SAVEPOINT active_record_1
17208
+ 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]]
17209
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.431254"], ["updated_at", "2019-09-02 00:24:53.431254"], ["email", "email-7@test.com"], ["encrypted_password", "$2a$04$gGLVBlhPOXcZVVCsRJQW0uI4anPC59N2nXEpYbeMvmgU6q12G4zT2"]]
17210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17211
+  (0.0ms) SAVEPOINT active_record_1
17212
+ 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]]
17213
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.434851"], ["updated_at", "2019-09-02 00:24:53.434851"], ["email", "email-8@test.com"], ["encrypted_password", "$2a$04$.ZMWvJNfcwrajNBptIb8K.j85TVlgHo0/dMVcEjkaKy2UyXWg32jK"]]
17214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17215
+ Processing by Samvera::Persona::UsersController#impersonate as HTML
17216
+ Parameters: {"id"=>"2"}
17217
+ 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]]
17218
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL AND "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
17219
+ Redirected to http://test.host/
17220
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
17221
+  (0.4ms) rollback transaction
17222
+  (0.0ms) begin transaction
17223
+  (0.0ms) SAVEPOINT active_record_1
17224
+ 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]]
17225
+ User Create (0.7ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.442478"], ["updated_at", "2019-09-02 00:24:53.442478"], ["email", "email-9@test.com"], ["encrypted_password", "$2a$04$W/s2mCsStGmeq/N4ZPF8.eSTA8zAnk48O7yDCU8/8jqH5YiFt7TQK"]]
17226
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17227
+  (0.1ms) SAVEPOINT active_record_1
17228
+ 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]]
17229
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.448184"], ["updated_at", "2019-09-02 00:24:53.448184"], ["email", "email-10@test.com"], ["encrypted_password", "$2a$04$F5p5lQa//lf/ahOq3yjEmuxpyl4vuyJYXywKONhIigJv7gxvxuISe"]]
17230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17231
+  (0.4ms) rollback transaction
17232
+  (0.0ms) begin transaction
17233
+  (0.1ms) SAVEPOINT active_record_1
17234
+ 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]]
17235
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.454826"], ["updated_at", "2019-09-02 00:24:53.454826"], ["email", "email-11@test.com"], ["encrypted_password", "$2a$04$ib.u9E9HQtzgEnVwlcuB5.QlMOI6kiE1oX5fT3gUA4WwCfmvuOn8C"]]
17236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17237
+  (0.1ms) SAVEPOINT active_record_1
17238
+ 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]]
17239
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.458579"], ["updated_at", "2019-09-02 00:24:53.458579"], ["email", "email-12@test.com"], ["encrypted_password", "$2a$04$TUWby8CVfDltM3SyRNAdNufnaSovu.ErMJFAWjoGwoFeKlGKc3v4C"]]
17240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17241
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."deleted_at" IS NULL
17242
+  (0.6ms) rollback transaction
17243
+  (0.0ms) begin transaction
17244
+  (0.1ms) SAVEPOINT active_record_1
17245
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-13@test.com"], ["LIMIT", 1]]
17246
+ User Create (0.7ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.464563"], ["updated_at", "2019-09-02 00:24:53.464563"], ["email", "email-13@test.com"], ["encrypted_password", "$2a$04$d4ypoLTouB.bLVhAbQRiJ.5ydNgUCP9.G5PjOy3hT3i7103vIGQHe"]]
17247
+  (0.2ms) RELEASE SAVEPOINT active_record_1
17248
+  (0.1ms) SAVEPOINT active_record_1
17249
+ 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]]
17250
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.469756"], ["updated_at", "2019-09-02 00:24:53.469756"], ["email", "email-14@test.com"], ["encrypted_password", "$2a$04$6FlD.gn0PfyQu7zzuDIavea5PJjFw4tJoVxwYPG/R1eocfxYemFoK"]]
17251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17252
+  (0.4ms) rollback transaction
17253
+  (0.1ms) begin transaction
17254
+  (0.1ms) SAVEPOINT active_record_1
17255
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-15@test.com"], ["LIMIT", 1]]
17256
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.487334"], ["updated_at", "2019-09-02 00:24:53.487334"], ["email", "email-15@test.com"], ["encrypted_password", "$2a$04$SQjSuEO9AD0DFM8Oy/cNGezkrkAc2Fm0nPNnYL1oZF4ob4xonb86G"]]
17257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17258
+  (0.1ms) SAVEPOINT active_record_1
17259
+ 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]]
17260
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.491506"], ["updated_at", "2019-09-02 00:24:53.491506"], ["email", "email-16@test.com"], ["encrypted_password", "$2a$04$1k.zO/gNqewg.FZBticrdOI8XRyMHpZvbM6snRnR4Vs1631Jpjl5G"]]
17261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17262
+  (0.7ms) rollback transaction
17263
+  (0.1ms) begin transaction
17264
+  (0.1ms) SAVEPOINT active_record_1
17265
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-17@test.com"], ["LIMIT", 1]]
17266
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.499554"], ["updated_at", "2019-09-02 00:24:53.499554"], ["email", "email-17@test.com"], ["encrypted_password", "$2a$04$f342UfkE9uq8mU9P.LSHtevqmzp0yuHHC9yYCKAPO7tTxIF4nPIO."]]
17267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17268
+  (0.1ms) SAVEPOINT active_record_1
17269
+ 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]]
17270
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.504383"], ["updated_at", "2019-09-02 00:24:53.504383"], ["email", "email-18@test.com"], ["encrypted_password", "$2a$04$67KMqfHEsjUy5gAfrh3YyuHq6uDDgCI1Grlw4fOQ1WUN1fJ1zV2zK"]]
17271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17272
+  (0.1ms) SAVEPOINT active_record_1
17273
+ 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]]
17274
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.508388"], ["updated_at", "2019-09-02 00:24:53.508388"], ["email", "email-19@test.com"], ["encrypted_password", "$2a$04$G3iTYfPBlciPf.V3cEz60.guztHPsXxRnmhxt/q5y.ZE1X.AONEYG"]]
17275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17276
+  (0.1ms) SAVEPOINT active_record_1
17277
+ 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]]
17278
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.512050"], ["updated_at", "2019-09-02 00:24:53.512050"], ["email", "email-20@test.com"], ["encrypted_password", "$2a$04$QIK/1ncCn5YfV3ZT6/9aLe8BKI/iReh9HvZxyjiz5jE2s1JWkRJmK"]]
17279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17280
+  (0.0ms) SAVEPOINT active_record_1
17281
+ 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]]
17282
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.515461"], ["updated_at", "2019-09-02 00:24:53.515461"], ["email", "email-21@test.com"], ["encrypted_password", "$2a$04$zu9i9WEy/K6wfBtSbadSruPHn7MFRmZUXc3FhLV111xgiTx8WZFgq"]]
17283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17284
+  (0.1ms) SAVEPOINT active_record_1
17285
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-22@test.com"], ["LIMIT", 1]]
17286
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:53.519580"], ["updated_at", "2019-09-02 00:24:53.519580"], ["email", "email-22@test.com"], ["encrypted_password", "$2a$04$OdY8odgAKWRL9k8CL8FVOuaPhvmOub4ryggJzqKJlrb1M0.T4I8va"]]
17287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17288
+ User Load (0.2ms) 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]]
17289
+ 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", "8f183d1de5a343c75e5dbab6c46001bf65175622dd42198a8a81cf58030111da"], ["LIMIT", 1]]
17290
+  (0.0ms) SAVEPOINT active_record_1
17291
+ 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-09-02 00:24:53.618601"], ["updated_at", "2019-09-02 00:24:53.618601"], ["email", "email-23@test.com"], ["encrypted_password", "$2a$04$CcxkWqDMWGtHJLCxeipzCee3KZF.ES9.vRNksSxqfh7hoNmIOoDqW"], ["invitation_token", "8f183d1de5a343c75e5dbab6c46001bf65175622dd42198a8a81cf58030111da"], ["invitation_created_at", "2019-09-02 00:24:53.618311"], ["invitation_sent_at", "2019-09-02 00:24:53.618311"]]
17292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17293
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17294
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (2.0ms)
17295
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17296
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.6ms)
17297
+ Devise::Mailer#invitation_instructions: processed outbound mail in 188.6ms
17298
+ Sent mail to email-23@test.com (8.8ms)
17299
+ Date: Sun, 01 Sep 2019 17:24:53 -0700
17300
+ From: please-change-me-at-config-initializers-devise@example.com
17301
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17302
+ To: email-23@test.com
17303
+ Message-ID: <5d6c6155c6aa8_175ef3ff231036e30379cc@citron.local.mail>
17304
+ Subject: Invitation instructions
17305
+ Mime-Version: 1.0
17306
+ Content-Type: multipart/alternative;
17307
+ boundary="--==_mimepart_5d6c6155c5297_175ef3ff231036e30378e8";
17308
+ charset=UTF-8
17309
+ Content-Transfer-Encoding: 7bit
17310
+
17311
+
17312
+ ----==_mimepart_5d6c6155c5297_175ef3ff231036e30378e8
17313
+ Content-Type: text/plain;
17314
+ charset=UTF-8
17315
+ Content-Transfer-Encoding: 7bit
17316
+
17317
+ Hello email-23@test.com
17318
+
17319
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17320
+
17321
+ http://localhost:3000/users/invitation/accept?invitation_token=x7MTWKrCGLqG4oJ2joSJ
17322
+
17323
+
17324
+ 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.
17325
+
17326
+ ----==_mimepart_5d6c6155c5297_175ef3ff231036e30378e8
17327
+ Content-Type: text/html;
17328
+ charset=UTF-8
17329
+ Content-Transfer-Encoding: 7bit
17330
+
17331
+ <p>Hello email-23@test.com</p>
17332
+
17333
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17334
+
17335
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=x7MTWKrCGLqG4oJ2joSJ">Accept invitation</a></p>
17336
+
17337
+
17338
+ <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>
17339
+
17340
+ ----==_mimepart_5d6c6155c5297_175ef3ff231036e30378e8--
17341
+
17342
+ 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]]
17343
+ 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", "3b08a9d27dcfc3d7494a913a020205cccb321c82cb6ccf44c1054b9a273150ae"], ["LIMIT", 1]]
17344
+  (0.0ms) SAVEPOINT active_record_1
17345
+ 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-09-02 00:24:53.820079"], ["updated_at", "2019-09-02 00:24:53.820079"], ["email", "email-24@test.com"], ["encrypted_password", "$2a$04$eu7PocQy.2Qkk/lqRt7oTubZyW.ERb2NFQGthXWiXtzXP8yoiB78G"], ["invitation_token", "3b08a9d27dcfc3d7494a913a020205cccb321c82cb6ccf44c1054b9a273150ae"], ["invitation_created_at", "2019-09-02 00:24:53.819792"], ["invitation_sent_at", "2019-09-02 00:24:53.819792"]]
17346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17347
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17348
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
17349
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17350
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
17351
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.3ms
17352
+ Sent mail to email-24@test.com (2.1ms)
17353
+ Date: Sun, 01 Sep 2019 17:24:53 -0700
17354
+ From: please-change-me-at-config-initializers-devise@example.com
17355
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17356
+ To: email-24@test.com
17357
+ Message-ID: <5d6c6155c9267_175ef3ff231036e3038195@citron.local.mail>
17358
+ Subject: Invitation instructions
17359
+ Mime-Version: 1.0
17360
+ Content-Type: multipart/alternative;
17361
+ boundary="--==_mimepart_5d6c6155c8cf0_175ef3ff231036e30380d8";
17362
+ charset=UTF-8
17363
+ Content-Transfer-Encoding: 7bit
17364
+
17365
+
17366
+ ----==_mimepart_5d6c6155c8cf0_175ef3ff231036e30380d8
17367
+ Content-Type: text/plain;
17368
+ charset=UTF-8
17369
+ Content-Transfer-Encoding: 7bit
17370
+
17371
+ Hello email-24@test.com
17372
+
17373
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17374
+
17375
+ http://localhost:3000/users/invitation/accept?invitation_token=9JWBrFMsF4JWNWLf6Ads
17376
+
17377
+
17378
+ 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.
17379
+
17380
+ ----==_mimepart_5d6c6155c8cf0_175ef3ff231036e30380d8
17381
+ Content-Type: text/html;
17382
+ charset=UTF-8
17383
+ Content-Transfer-Encoding: 7bit
17384
+
17385
+ <p>Hello email-24@test.com</p>
17386
+
17387
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17388
+
17389
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=9JWBrFMsF4JWNWLf6Ads">Accept invitation</a></p>
17390
+
17391
+
17392
+ <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>
17393
+
17394
+ ----==_mimepart_5d6c6155c8cf0_175ef3ff231036e30380d8--
17395
+
17396
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
17397
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.9ms)
17398
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.5ms)
17399
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (195.0ms)
17400
+  (0.4ms) rollback transaction
17401
+  (0.0ms) begin transaction
17402
+  (0.0ms) SAVEPOINT active_record_1
17403
+ 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]]
17404
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.040091"], ["updated_at", "2019-09-02 00:24:54.040091"], ["email", "email-25@test.com"], ["encrypted_password", "$2a$04$.cgSaCJL5/ISxfyLGcWuXuIEWQUttFGd15xK3AJ1ayCdf9rkCb.ei"]]
17405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17406
+  (0.0ms) SAVEPOINT active_record_1
17407
+ 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]]
17408
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.043032"], ["updated_at", "2019-09-02 00:24:54.043032"], ["email", "email-26@test.com"], ["encrypted_password", "$2a$04$uux0f9BlkwmAfcfgSE9We.U4iNe4msMZk6m8CTIydlyM866Ci8xc."]]
17409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17410
+  (0.1ms) SAVEPOINT active_record_1
17411
+ 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]]
17412
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.045781"], ["updated_at", "2019-09-02 00:24:54.045781"], ["email", "email-27@test.com"], ["encrypted_password", "$2a$04$0khddm0LlAAMsJJrklJyquf7JleS2hKdadhaS99WRwH3WIi7.ClhO"]]
17413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17414
+  (0.0ms) SAVEPOINT active_record_1
17415
+ 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]]
17416
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.048505"], ["updated_at", "2019-09-02 00:24:54.048505"], ["email", "email-28@test.com"], ["encrypted_password", "$2a$04$t3hwgNFQabr0moj7sPp2X.Nd.THK5/B01KoPfF9quTHPunnVMXZuy"]]
17417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17418
+  (0.0ms) SAVEPOINT active_record_1
17419
+ 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]]
17420
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.051209"], ["updated_at", "2019-09-02 00:24:54.051209"], ["email", "email-29@test.com"], ["encrypted_password", "$2a$04$8YEowtq1/2bAuluqOrk5ouwYSYPFeEv1BeX.iqCCDZzheXfzQ3bv2"]]
17421
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17422
+  (0.1ms) SAVEPOINT active_record_1
17423
+ 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]]
17424
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.054988"], ["updated_at", "2019-09-02 00:24:54.054988"], ["email", "email-30@test.com"], ["encrypted_password", "$2a$04$ih8Ve74atPEilaO.Sda0AecjayNIlrhOeJIuJOBTcPoL//4ASF.fa"]]
17425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17426
+ 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]]
17427
+ 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", "1103a7decc303f04237906793f7c11ce48930ebfaa1a020d6a48657907186537"], ["LIMIT", 1]]
17428
+  (0.0ms) SAVEPOINT active_record_1
17429
+ 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-09-02 00:24:54.058865"], ["updated_at", "2019-09-02 00:24:54.058865"], ["email", "email-31@test.com"], ["encrypted_password", "$2a$04$feh7SAadGw6FWcZMUOnuKeRRnLZZdgysfhSdxrTR.Bq8DkguNoaQG"], ["invitation_token", "1103a7decc303f04237906793f7c11ce48930ebfaa1a020d6a48657907186537"], ["invitation_created_at", "2019-09-02 00:24:54.058588"], ["invitation_sent_at", "2019-09-02 00:24:54.058588"]]
17430
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17431
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17432
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
17433
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17434
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
17435
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
17436
+ Sent mail to email-31@test.com (2.5ms)
17437
+ Date: Sun, 01 Sep 2019 17:24:54 -0700
17438
+ From: please-change-me-at-config-initializers-devise@example.com
17439
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17440
+ To: email-31@test.com
17441
+ Message-ID: <5d6c6156f737_175ef3ff231036e30383aa@citron.local.mail>
17442
+ Subject: Invitation instructions
17443
+ Mime-Version: 1.0
17444
+ Content-Type: multipart/alternative;
17445
+ boundary="--==_mimepart_5d6c6156f0fd_175ef3ff231036e3038289";
17446
+ charset=UTF-8
17447
+ Content-Transfer-Encoding: 7bit
17448
+
17449
+
17450
+ ----==_mimepart_5d6c6156f0fd_175ef3ff231036e3038289
17451
+ Content-Type: text/plain;
17452
+ charset=UTF-8
17453
+ Content-Transfer-Encoding: 7bit
17454
+
17455
+ Hello email-31@test.com
17456
+
17457
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17458
+
17459
+ http://localhost:3000/users/invitation/accept?invitation_token=5A2zJDQYZSDv9uTufZY6
17460
+
17461
+
17462
+ 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.
17463
+
17464
+ ----==_mimepart_5d6c6156f0fd_175ef3ff231036e3038289
17465
+ Content-Type: text/html;
17466
+ charset=UTF-8
17467
+ Content-Transfer-Encoding: 7bit
17468
+
17469
+ <p>Hello email-31@test.com</p>
17470
+
17471
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17472
+
17473
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=5A2zJDQYZSDv9uTufZY6">Accept invitation</a></p>
17474
+
17475
+
17476
+ <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>
17477
+
17478
+ ----==_mimepart_5d6c6156f0fd_175ef3ff231036e3038289--
17479
+
17480
+ 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]]
17481
+ 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", "0f6b5cddc5a19221bbd2eefa1a86ab88eafa0c87680cdb690cf05c4c50575be2"], ["LIMIT", 1]]
17482
+  (0.1ms) SAVEPOINT active_record_1
17483
+ 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-09-02 00:24:54.068552"], ["updated_at", "2019-09-02 00:24:54.068552"], ["email", "email-32@test.com"], ["encrypted_password", "$2a$04$JjYmNq9T17icov3bDf90jeTV/cJlBJu33lWZuyl.2zjw3C72vJF9a"], ["invitation_token", "0f6b5cddc5a19221bbd2eefa1a86ab88eafa0c87680cdb690cf05c4c50575be2"], ["invitation_created_at", "2019-09-02 00:24:54.068187"], ["invitation_sent_at", "2019-09-02 00:24:54.068187"]]
17484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17485
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17486
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
17487
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17488
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
17489
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
17490
+ Sent mail to email-32@test.com (2.4ms)
17491
+ Date: Sun, 01 Sep 2019 17:24:54 -0700
17492
+ From: please-change-me-at-config-initializers-devise@example.com
17493
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17494
+ To: email-32@test.com
17495
+ Message-ID: <5d6c615611da2_175ef3ff231036e303853@citron.local.mail>
17496
+ Subject: Invitation instructions
17497
+ Mime-Version: 1.0
17498
+ Content-Type: multipart/alternative;
17499
+ boundary="--==_mimepart_5d6c615611784_175ef3ff231036e3038466";
17500
+ charset=UTF-8
17501
+ Content-Transfer-Encoding: 7bit
17502
+
17503
+
17504
+ ----==_mimepart_5d6c615611784_175ef3ff231036e3038466
17505
+ Content-Type: text/plain;
17506
+ charset=UTF-8
17507
+ Content-Transfer-Encoding: 7bit
17508
+
17509
+ Hello email-32@test.com
17510
+
17511
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17512
+
17513
+ http://localhost:3000/users/invitation/accept?invitation_token=MXjD4NKs2myH9U4zExt2
17514
+
17515
+
17516
+ 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.
17517
+
17518
+ ----==_mimepart_5d6c615611784_175ef3ff231036e3038466
17519
+ Content-Type: text/html;
17520
+ charset=UTF-8
17521
+ Content-Transfer-Encoding: 7bit
17522
+
17523
+ <p>Hello email-32@test.com</p>
17524
+
17525
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17526
+
17527
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=MXjD4NKs2myH9U4zExt2">Accept invitation</a></p>
17528
+
17529
+
17530
+ <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>
17531
+
17532
+ ----==_mimepart_5d6c615611784_175ef3ff231036e3038466--
17533
+
17534
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
17535
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.2ms)
17536
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.1ms)
17537
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (7.8ms)
17538
+  (0.4ms) rollback transaction
17539
+  (0.0ms) begin transaction
17540
+  (0.0ms) SAVEPOINT active_record_1
17541
+ 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]]
17542
+ User Create (0.4ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.089169"], ["updated_at", "2019-09-02 00:24:54.089169"], ["email", "email-33@test.com"], ["encrypted_password", "$2a$04$2H4xELKdIeSFE0hAgBBC8uP7vUKeWuhR9sw/8xNHIxzihFPuzQAcy"]]
17543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17544
+  (0.0ms) SAVEPOINT active_record_1
17545
+ 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]]
17546
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.092226"], ["updated_at", "2019-09-02 00:24:54.092226"], ["email", "email-34@test.com"], ["encrypted_password", "$2a$04$YyB6BaOhNovw.o57Teh4U.7nA0CO/Ge.o.TEGaX82406TXMQ3z3/q"]]
17547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17548
+  (0.0ms) SAVEPOINT active_record_1
17549
+ 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]]
17550
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.095093"], ["updated_at", "2019-09-02 00:24:54.095093"], ["email", "email-35@test.com"], ["encrypted_password", "$2a$04$Q1M3toAa1iPVwUYivFD2SOblr/D/Tor4EklF0J0JO2Z1i3CYLUP9q"]]
17551
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17552
+  (0.0ms) SAVEPOINT active_record_1
17553
+ 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]]
17554
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.098113"], ["updated_at", "2019-09-02 00:24:54.098113"], ["email", "email-36@test.com"], ["encrypted_password", "$2a$04$YiZbpOTS7WcUMcu02lqaG.ZxZt3fswKR.5MXOiGq6FDKhabFBFHDW"]]
17555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17556
+  (0.0ms) SAVEPOINT active_record_1
17557
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-37@test.com"], ["LIMIT", 1]]
17558
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.101454"], ["updated_at", "2019-09-02 00:24:54.101454"], ["email", "email-37@test.com"], ["encrypted_password", "$2a$04$40.9JvdD8RHXDs1azQyrF.m4K/JMMhtfFmgLqgk8M0g9u.j5UQwDW"]]
17559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17560
+  (0.1ms) SAVEPOINT active_record_1
17561
+ 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]]
17562
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.105623"], ["updated_at", "2019-09-02 00:24:54.105623"], ["email", "email-38@test.com"], ["encrypted_password", "$2a$04$bDzAXnTqCeUGzSDJUJQPHeLOGjVwsyXsqRoVAYGIz9EFqvMQdxV3G"]]
17563
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17564
+ 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]]
17565
+ 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", "31ae1ceac3ea97dad0478b547eff6fba6fed1cb8870439e8f8c0a48cdbfd9ebc"], ["LIMIT", 1]]
17566
+  (0.1ms) SAVEPOINT active_record_1
17567
+ 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-09-02 00:24:54.109834"], ["updated_at", "2019-09-02 00:24:54.109834"], ["email", "email-39@test.com"], ["encrypted_password", "$2a$04$gwHaA1ShmpGINQxWtQmkfOTcrNW6uhO5p6WOASCsAQT3qEYg11rsO"], ["invitation_token", "31ae1ceac3ea97dad0478b547eff6fba6fed1cb8870439e8f8c0a48cdbfd9ebc"], ["invitation_created_at", "2019-09-02 00:24:54.109536"], ["invitation_sent_at", "2019-09-02 00:24:54.109536"]]
17568
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17569
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17570
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
17571
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17572
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
17573
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.2ms
17574
+ Sent mail to email-39@test.com (3.0ms)
17575
+ Date: Sun, 01 Sep 2019 17:24:54 -0700
17576
+ From: please-change-me-at-config-initializers-devise@example.com
17577
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17578
+ To: email-39@test.com
17579
+ Message-ID: <5d6c61561c16f_175ef3ff231036e303879a@citron.local.mail>
17580
+ Subject: Invitation instructions
17581
+ Mime-Version: 1.0
17582
+ Content-Type: multipart/alternative;
17583
+ boundary="--==_mimepart_5d6c61561b95c_175ef3ff231036e303869b";
17584
+ charset=UTF-8
17585
+ Content-Transfer-Encoding: 7bit
17586
+
17587
+
17588
+ ----==_mimepart_5d6c61561b95c_175ef3ff231036e303869b
17589
+ Content-Type: text/plain;
17590
+ charset=UTF-8
17591
+ Content-Transfer-Encoding: 7bit
17592
+
17593
+ Hello email-39@test.com
17594
+
17595
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17596
+
17597
+ http://localhost:3000/users/invitation/accept?invitation_token=KLqeUhzgGiGytQHu9kRm
17598
+
17599
+
17600
+ 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.
17601
+
17602
+ ----==_mimepart_5d6c61561b95c_175ef3ff231036e303869b
17603
+ Content-Type: text/html;
17604
+ charset=UTF-8
17605
+ Content-Transfer-Encoding: 7bit
17606
+
17607
+ <p>Hello email-39@test.com</p>
17608
+
17609
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17610
+
17611
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=KLqeUhzgGiGytQHu9kRm">Accept invitation</a></p>
17612
+
17613
+
17614
+ <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>
17615
+
17616
+ ----==_mimepart_5d6c61561b95c_175ef3ff231036e303869b--
17617
+
17618
+ 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]]
17619
+ 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", "ba70aa4c531b0349232c6484b1e5a0f5a5ef48d02d996021de61ef7ab6ea6336"], ["LIMIT", 1]]
17620
+  (0.0ms) SAVEPOINT active_record_1
17621
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.122435"], ["updated_at", "2019-09-02 00:24:54.122435"], ["email", "email-40@test.com"], ["encrypted_password", "$2a$04$xuhgEwSgIR54xvvzMcgGRenPGwIH.6NRh.F/aBuhr/tKXkal7bpru"], ["invitation_token", "ba70aa4c531b0349232c6484b1e5a0f5a5ef48d02d996021de61ef7ab6ea6336"], ["invitation_created_at", "2019-09-02 00:24:54.122058"], ["invitation_sent_at", "2019-09-02 00:24:54.122058"]]
17622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17623
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17624
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.6ms)
17625
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17626
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
17627
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.7ms
17628
+ Sent mail to email-40@test.com (3.0ms)
17629
+ Date: Sun, 01 Sep 2019 17:24:54 -0700
17630
+ From: please-change-me-at-config-initializers-devise@example.com
17631
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17632
+ To: email-40@test.com
17633
+ Message-ID: <5d6c61561f583_175ef3ff231036e30389a9@citron.local.mail>
17634
+ Subject: Invitation instructions
17635
+ Mime-Version: 1.0
17636
+ Content-Type: multipart/alternative;
17637
+ boundary="--==_mimepart_5d6c61561ebdd_175ef3ff231036e30388f9";
17638
+ charset=UTF-8
17639
+ Content-Transfer-Encoding: 7bit
17640
+
17641
+
17642
+ ----==_mimepart_5d6c61561ebdd_175ef3ff231036e30388f9
17643
+ Content-Type: text/plain;
17644
+ charset=UTF-8
17645
+ Content-Transfer-Encoding: 7bit
17646
+
17647
+ Hello email-40@test.com
17648
+
17649
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17650
+
17651
+ http://localhost:3000/users/invitation/accept?invitation_token=cTvuKmDmArCcBQZF2hxF
17652
+
17653
+
17654
+ 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.
17655
+
17656
+ ----==_mimepart_5d6c61561ebdd_175ef3ff231036e30388f9
17657
+ Content-Type: text/html;
17658
+ charset=UTF-8
17659
+ Content-Transfer-Encoding: 7bit
17660
+
17661
+ <p>Hello email-40@test.com</p>
17662
+
17663
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17664
+
17665
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=cTvuKmDmArCcBQZF2hxF">Accept invitation</a></p>
17666
+
17667
+
17668
+ <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>
17669
+
17670
+ ----==_mimepart_5d6c61561ebdd_175ef3ff231036e30388f9--
17671
+
17672
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
17673
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
17674
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
17675
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (7.6ms)
17676
+  (0.7ms) rollback transaction
17677
+  (0.0ms) begin transaction
17678
+  (0.1ms) SAVEPOINT active_record_1
17679
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-41@test.com"], ["LIMIT", 1]]
17680
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.145527"], ["updated_at", "2019-09-02 00:24:54.145527"], ["email", "email-41@test.com"], ["encrypted_password", "$2a$04$Yx7SvK0Ai873QgBND/lFMuQJDw4RN4HhwFaG5K9DBYids2RiaNS0S"]]
17681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17682
+  (0.0ms) SAVEPOINT active_record_1
17683
+ 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]]
17684
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.148961"], ["updated_at", "2019-09-02 00:24:54.148961"], ["email", "email-42@test.com"], ["encrypted_password", "$2a$04$EZLZlf97GpdKi8659YWYLOveWVc15cMrefK6wr5/sw96m8qA9q8/G"]]
17685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17686
+  (0.0ms) SAVEPOINT active_record_1
17687
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."deleted_at" IS NULL LIMIT ? [["email", "email-43@test.com"], ["LIMIT", 1]]
17688
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.152600"], ["updated_at", "2019-09-02 00:24:54.152600"], ["email", "email-43@test.com"], ["encrypted_password", "$2a$04$tzFkmlQiF51svgMDxpCv..NE//X7FQkcJg4iyRZq/me4KhU4sm1fS"]]
17689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17690
+  (0.1ms) SAVEPOINT active_record_1
17691
+ 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]]
17692
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.156487"], ["updated_at", "2019-09-02 00:24:54.156487"], ["email", "email-44@test.com"], ["encrypted_password", "$2a$04$KgklT6zqM8/tFVNIqtNZz.JRbNmCr/3l1MG98KkRfHdeTZTX4mWxu"]]
17693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17694
+  (0.0ms) SAVEPOINT active_record_1
17695
+ 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]]
17696
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.159527"], ["updated_at", "2019-09-02 00:24:54.159527"], ["email", "email-45@test.com"], ["encrypted_password", "$2a$04$VhR8HRE1jkgvckWlMPobGOxqvKd.oi4pBLf3aKO13DN9quUbB6NcK"]]
17697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17698
+  (0.0ms) SAVEPOINT active_record_1
17699
+ 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]]
17700
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.162291"], ["updated_at", "2019-09-02 00:24:54.162291"], ["email", "email-46@test.com"], ["encrypted_password", "$2a$04$5XY7lyaTFVGNPFNki9CY/etA60sKgdN0ptvPYtsNDb4onwPQ/UCci"]]
17701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17702
+ 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]]
17703
+ 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", "9c2a4686fc1121563c98d107a5b7ac5231ed27434829f64b3b590ede0eb03530"], ["LIMIT", 1]]
17704
+  (0.0ms) SAVEPOINT active_record_1
17705
+ 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-09-02 00:24:54.166120"], ["updated_at", "2019-09-02 00:24:54.166120"], ["email", "email-47@test.com"], ["encrypted_password", "$2a$04$5ODxlvn7cxqM4651nYoUd.BVEGB3pL3wzIZ0zKGlNOLEi5bTOcXD."], ["invitation_token", "9c2a4686fc1121563c98d107a5b7ac5231ed27434829f64b3b590ede0eb03530"], ["invitation_created_at", "2019-09-02 00:24:54.165858"], ["invitation_sent_at", "2019-09-02 00:24:54.165858"]]
17706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17707
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17708
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
17709
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17710
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
17711
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.0ms
17712
+ Sent mail to email-47@test.com (6.3ms)
17713
+ Date: Sun, 01 Sep 2019 17:24:54 -0700
17714
+ From: please-change-me-at-config-initializers-devise@example.com
17715
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17716
+ To: email-47@test.com
17717
+ Message-ID: <5d6c615629bf0_175ef3ff231036e30391d3@citron.local.mail>
17718
+ Subject: Invitation instructions
17719
+ Mime-Version: 1.0
17720
+ Content-Type: multipart/alternative;
17721
+ boundary="--==_mimepart_5d6c6156294bc_175ef3ff231036e3039012";
17722
+ charset=UTF-8
17723
+ Content-Transfer-Encoding: 7bit
17724
+
17725
+
17726
+ ----==_mimepart_5d6c6156294bc_175ef3ff231036e3039012
17727
+ Content-Type: text/plain;
17728
+ charset=UTF-8
17729
+ Content-Transfer-Encoding: 7bit
17730
+
17731
+ Hello email-47@test.com
17732
+
17733
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17734
+
17735
+ http://localhost:3000/users/invitation/accept?invitation_token=JKUWYKS9e-xP1yWVv2kt
17736
+
17737
+
17738
+ 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.
17739
+
17740
+ ----==_mimepart_5d6c6156294bc_175ef3ff231036e3039012
17741
+ Content-Type: text/html;
17742
+ charset=UTF-8
17743
+ Content-Transfer-Encoding: 7bit
17744
+
17745
+ <p>Hello email-47@test.com</p>
17746
+
17747
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17748
+
17749
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=JKUWYKS9e-xP1yWVv2kt">Accept invitation</a></p>
17750
+
17751
+
17752
+ <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>
17753
+
17754
+ ----==_mimepart_5d6c6156294bc_175ef3ff231036e3039012--
17755
+
17756
+ 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-48@test.com"], ["LIMIT", 1]]
17757
+ 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", "40241f4f07bddb58d0fae1a88e224e1f5baf7726df042bf3ecfaf3ded6a08745"], ["LIMIT", 1]]
17758
+  (0.0ms) SAVEPOINT active_record_1
17759
+ User Create (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password", "invitation_token", "invitation_created_at", "invitation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.180999"], ["updated_at", "2019-09-02 00:24:54.180999"], ["email", "email-48@test.com"], ["encrypted_password", "$2a$04$Xr824oroMwq7.gMjpSteE.YrbjNsmuhkRR3i0sr5GWomhJR1xtjDK"], ["invitation_token", "40241f4f07bddb58d0fae1a88e224e1f5baf7726df042bf3ecfaf3ded6a08745"], ["invitation_created_at", "2019-09-02 00:24:54.180639"], ["invitation_sent_at", "2019-09-02 00:24:54.180639"]]
17760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17761
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17762
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.5ms)
17763
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17764
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
17765
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.8ms
17766
+ Sent mail to email-48@test.com (2.6ms)
17767
+ Date: Sun, 01 Sep 2019 17:24:54 -0700
17768
+ From: please-change-me-at-config-initializers-devise@example.com
17769
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17770
+ To: email-48@test.com
17771
+ Message-ID: <5d6c61562d5be_175ef3ff231036e3039325@citron.local.mail>
17772
+ Subject: Invitation instructions
17773
+ Mime-Version: 1.0
17774
+ Content-Type: multipart/alternative;
17775
+ boundary="--==_mimepart_5d6c61562cf0a_175ef3ff231036e303926c";
17776
+ charset=UTF-8
17777
+ Content-Transfer-Encoding: 7bit
17778
+
17779
+
17780
+ ----==_mimepart_5d6c61562cf0a_175ef3ff231036e303926c
17781
+ Content-Type: text/plain;
17782
+ charset=UTF-8
17783
+ Content-Transfer-Encoding: 7bit
17784
+
17785
+ Hello email-48@test.com
17786
+
17787
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17788
+
17789
+ http://localhost:3000/users/invitation/accept?invitation_token=jefhygdw-ptL-j3vytHs
17790
+
17791
+
17792
+ 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.
17793
+
17794
+ ----==_mimepart_5d6c61562cf0a_175ef3ff231036e303926c
17795
+ Content-Type: text/html;
17796
+ charset=UTF-8
17797
+ Content-Transfer-Encoding: 7bit
17798
+
17799
+ <p>Hello email-48@test.com</p>
17800
+
17801
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17802
+
17803
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=jefhygdw-ptL-j3vytHs">Accept invitation</a></p>
17804
+
17805
+
17806
+ <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>
17807
+
17808
+ ----==_mimepart_5d6c61562cf0a_175ef3ff231036e303926c--
17809
+
17810
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
17811
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
17812
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
17813
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (7.2ms)
17814
+  (0.7ms) rollback transaction
17815
+  (0.0ms) begin transaction
17816
+  (0.0ms) SAVEPOINT active_record_1
17817
+ 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]]
17818
+ User Create (0.5ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.201664"], ["updated_at", "2019-09-02 00:24:54.201664"], ["email", "email-49@test.com"], ["encrypted_password", "$2a$04$0b0s6lhYrlZKTTdUkddKU.rQvU/zrreUjBxZWLScocF/ev31YZgfK"]]
17819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17820
+  (0.0ms) SAVEPOINT active_record_1
17821
+ 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]]
17822
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.204895"], ["updated_at", "2019-09-02 00:24:54.204895"], ["email", "email-50@test.com"], ["encrypted_password", "$2a$04$l6n/PqWHLrghPg.aBl5t1.cp4idgCVRJZREq6t9WJXZdthhHrI.ey"]]
17823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17824
+  (0.0ms) SAVEPOINT active_record_1
17825
+ 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]]
17826
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.207621"], ["updated_at", "2019-09-02 00:24:54.207621"], ["email", "email-51@test.com"], ["encrypted_password", "$2a$04$XVwqO6AocL6DpPmDHG5eZug0..9sBko3.vrAPabbv7vI1LQ8JlNFS"]]
17827
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17828
+  (0.0ms) SAVEPOINT active_record_1
17829
+ 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]]
17830
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.210647"], ["updated_at", "2019-09-02 00:24:54.210647"], ["email", "email-52@test.com"], ["encrypted_password", "$2a$04$RT04/ym8GvbAuwOiPKCOn.4JbfNUv3xBDMbvQTnIBwu08qLRIwUgy"]]
17831
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17832
+  (0.1ms) SAVEPOINT active_record_1
17833
+ 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]]
17834
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.213702"], ["updated_at", "2019-09-02 00:24:54.213702"], ["email", "email-53@test.com"], ["encrypted_password", "$2a$04$t9Jmr4ah86vyHALcT8Dnmel8gl9cR0/DvYoEMfO14IlNlmcd3y0p2"]]
17835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17836
+  (0.0ms) SAVEPOINT active_record_1
17837
+ 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]]
17838
+ User Create (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "email", "encrypted_password") VALUES (?, ?, ?, ?) [["created_at", "2019-09-02 00:24:54.216287"], ["updated_at", "2019-09-02 00:24:54.216287"], ["email", "email-54@test.com"], ["encrypted_password", "$2a$04$xVi6CjEHYXcpiNqnQX6LhOHibRMFncW/3NLw8IM9ageLxe3nJB.sS"]]
17839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17840
+ 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]]
17841
+ 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", "3d55eca7a61bd9f508d4244207050997d2b8e46844e8f58952228d6ccabc16ed"], ["LIMIT", 1]]
17842
+  (0.0ms) SAVEPOINT active_record_1
17843
+ 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-09-02 00:24:54.220624"], ["updated_at", "2019-09-02 00:24:54.220624"], ["email", "email-55@test.com"], ["encrypted_password", "$2a$04$/TG92Mud0GaVtGLA1Z4n8.Eq4YEweZRDg6mw8VYscRaSXd/rgSrNS"], ["invitation_token", "3d55eca7a61bd9f508d4244207050997d2b8e46844e8f58952228d6ccabc16ed"], ["invitation_created_at", "2019-09-02 00:24:54.220300"], ["invitation_sent_at", "2019-09-02 00:24:54.220300"]]
17844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17845
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17846
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.6ms)
17847
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17848
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.4ms)
17849
+ Devise::Mailer#invitation_instructions: processed outbound mail in 3.2ms
17850
+ Sent mail to email-55@test.com (2.8ms)
17851
+ Date: Sun, 01 Sep 2019 17:24:54 -0700
17852
+ From: please-change-me-at-config-initializers-devise@example.com
17853
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17854
+ To: email-55@test.com
17855
+ Message-ID: <5d6c61563725e_175ef3ff231036e303958c@citron.local.mail>
17856
+ Subject: Invitation instructions
17857
+ Mime-Version: 1.0
17858
+ Content-Type: multipart/alternative;
17859
+ boundary="--==_mimepart_5d6c615636aee_175ef3ff231036e3039463";
17860
+ charset=UTF-8
17861
+ Content-Transfer-Encoding: 7bit
17862
+
17863
+
17864
+ ----==_mimepart_5d6c615636aee_175ef3ff231036e3039463
17865
+ Content-Type: text/plain;
17866
+ charset=UTF-8
17867
+ Content-Transfer-Encoding: 7bit
17868
+
17869
+ Hello email-55@test.com
17870
+
17871
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17872
+
17873
+ http://localhost:3000/users/invitation/accept?invitation_token=osKsyTTt_ow3Jt5xJ8Gn
17874
+
17875
+
17876
+ 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.
17877
+
17878
+ ----==_mimepart_5d6c615636aee_175ef3ff231036e3039463
17879
+ Content-Type: text/html;
17880
+ charset=UTF-8
17881
+ Content-Transfer-Encoding: 7bit
17882
+
17883
+ <p>Hello email-55@test.com</p>
17884
+
17885
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17886
+
17887
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=osKsyTTt_ow3Jt5xJ8Gn">Accept invitation</a></p>
17888
+
17889
+
17890
+ <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>
17891
+
17892
+ ----==_mimepart_5d6c615636aee_175ef3ff231036e3039463--
17893
+
17894
+ 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-56@test.com"], ["LIMIT", 1]]
17895
+ 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", "80ac00f880a45548aeb762df1581c1b5c9a289cb6d312a5d4dad7eabd1b56d8f"], ["LIMIT", 1]]
17896
+  (0.0ms) SAVEPOINT active_record_1
17897
+ 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-09-02 00:24:54.231231"], ["updated_at", "2019-09-02 00:24:54.231231"], ["email", "email-56@test.com"], ["encrypted_password", "$2a$04$KHg/K6pHCotKfxv/RteD4eCwI.3bWur4FuA2GekssQktRzbiDV/8a"], ["invitation_token", "80ac00f880a45548aeb762df1581c1b5c9a289cb6d312a5d4dad7eabd1b56d8f"], ["invitation_created_at", "2019-09-02 00:24:54.230953"], ["invitation_sent_at", "2019-09-02 00:24:54.230953"]]
17898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17899
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb
17900
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.html.erb (0.4ms)
17901
+ Rendering /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb
17902
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise_invitable-1.7.5/app/views/devise/mailer/invitation_instructions.text.erb (0.3ms)
17903
+ Devise::Mailer#invitation_instructions: processed outbound mail in 2.7ms
17904
+ Sent mail to email-56@test.com (2.8ms)
17905
+ Date: Sun, 01 Sep 2019 17:24:54 -0700
17906
+ From: please-change-me-at-config-initializers-devise@example.com
17907
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17908
+ To: email-56@test.com
17909
+ Message-ID: <5d6c61563993d_175ef3ff231036e3039711@citron.local.mail>
17910
+ Subject: Invitation instructions
17911
+ Mime-Version: 1.0
17912
+ Content-Type: multipart/alternative;
17913
+ boundary="--==_mimepart_5d6c61563928a_175ef3ff231036e303961";
17914
+ charset=UTF-8
17915
+ Content-Transfer-Encoding: 7bit
17916
+
17917
+
17918
+ ----==_mimepart_5d6c61563928a_175ef3ff231036e303961
17919
+ Content-Type: text/plain;
17920
+ charset=UTF-8
17921
+ Content-Transfer-Encoding: 7bit
17922
+
17923
+ Hello email-56@test.com
17924
+
17925
+ Someone has invited you to http://localhost:3000/, you can accept it through the link below.
17926
+
17927
+ http://localhost:3000/users/invitation/accept?invitation_token=LzVLRRXe1cbpuve6mtnj
17928
+
17929
+
17930
+ 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.
17931
+
17932
+ ----==_mimepart_5d6c61563928a_175ef3ff231036e303961
17933
+ Content-Type: text/html;
17934
+ charset=UTF-8
17935
+ Content-Transfer-Encoding: 7bit
17936
+
17937
+ <p>Hello email-56@test.com</p>
17938
+
17939
+ <p>Someone has invited you to http://localhost:3000/, you can accept it through the link below.</p>
17940
+
17941
+ <p><a href="http://localhost:3000/users/invitation/accept?invitation_token=LzVLRRXe1cbpuve6mtnj">Accept invitation</a></p>
17942
+
17943
+
17944
+ <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>
17945
+
17946
+ ----==_mimepart_5d6c61563928a_175ef3ff231036e303961--
17947
+
17948
+ Rendering /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb
17949
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/_index_title.html.erb (0.1ms)
17950
+ Rendered /Users/rob/.rvm/gems/ruby-2.5.3/gems/devise-4.6.2/app/views/devise/shared/_error_messages.html.erb (0.0ms)
17951
+ Rendered /Users/rob/Work/Avalon/user_management_harness/samvera-persona/app/views/samvera/persona/users/index.html.erb (8.0ms)
17952
+  (0.4ms) 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.5
4
+ version: 0.1.6
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-08-16 00:00:00.000000000 Z
12
+ date: 2019-09-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -283,8 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
283
283
  - !ruby/object:Gem::Version
284
284
  version: '0'
285
285
  requirements: []
286
- rubyforge_project:
287
- rubygems_version: 2.7.9
286
+ rubygems_version: 3.0.3
288
287
  signing_key:
289
288
  specification_version: 4
290
289
  summary: Summary of Samvera::Persona.