vault-rails 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +6 -0
  4. data/lib/vault/encrypted_model.rb +2 -10
  5. data/lib/vault/rails/configurable.rb +1 -1
  6. data/lib/vault/rails/errors.rb +1 -1
  7. data/lib/vault/rails/json_serializer.rb +1 -1
  8. data/lib/vault/rails/version.rb +2 -2
  9. data/lib/vault/rails.rb +1 -1
  10. data/spec/dummy/app/models/lazy_person.rb +1 -1
  11. data/spec/dummy/app/models/lazy_single_person.rb +1 -1
  12. data/spec/dummy/app/models/person.rb +1 -1
  13. data/spec/dummy/config/application.rb +1 -1
  14. data/spec/dummy/config/boot.rb +1 -1
  15. data/spec/dummy/config/database.yml +1 -1
  16. data/spec/dummy/config/environment.rb +1 -1
  17. data/spec/dummy/config/environments/development.rb +1 -6
  18. data/spec/dummy/config/environments/test.rb +3 -13
  19. data/spec/dummy/config/initializers/assets.rb +3 -1
  20. data/spec/dummy/config/initializers/backtrace_silencers.rb +1 -1
  21. data/spec/dummy/config/initializers/cookies_serializer.rb +1 -1
  22. data/spec/dummy/config/initializers/filter_parameter_logging.rb +1 -1
  23. data/spec/dummy/config/initializers/inflections.rb +1 -1
  24. data/spec/dummy/config/initializers/mime_types.rb +1 -1
  25. data/spec/dummy/config/initializers/session_store.rb +1 -1
  26. data/spec/dummy/config/initializers/vault.rb +1 -1
  27. data/spec/dummy/config/initializers/wrap_parameters.rb +2 -2
  28. data/spec/dummy/config/locales/en.yml +1 -1
  29. data/spec/dummy/config/routes.rb +1 -1
  30. data/spec/dummy/config/secrets.yml +1 -1
  31. data/spec/dummy/config.ru +1 -1
  32. data/spec/dummy/db/development.sqlite3 +0 -0
  33. data/spec/dummy/db/migrate/20150428220101_create_people.rb +1 -1
  34. data/spec/dummy/db/schema.rb +1 -1
  35. data/spec/dummy/db/test.sqlite3 +0 -0
  36. data/spec/dummy/lib/binary_serializer.rb +1 -1
  37. data/spec/dummy/log/development.log +446 -0
  38. data/spec/dummy/log/test.log +55 -0
  39. data/spec/dummy/public/404.html +1 -1
  40. data/spec/dummy/public/422.html +1 -1
  41. data/spec/dummy/public/500.html +1 -1
  42. data/spec/integration/rails_spec.rb +1 -1
  43. data/spec/lib/vault/rails/json_serializer_spec.rb +1 -1
  44. data/spec/spec_helper.rb +1 -1
  45. data/spec/support/vault_server.rb +1 -1
  46. data/spec/unit/encrypted_model_spec.rb +3 -1
  47. data/spec/unit/rails/configurable_spec.rb +1 -1
  48. data/spec/unit/rails_spec.rb +1 -1
  49. data/spec/unit/vault/rails_spec.rb +1 -1
  50. metadata +19 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f406aefda2593192502dd99615e21a24b617fdce89c32ed1fad38b626678f9a
4
- data.tar.gz: dc3f7dbe353ae0bc8b7b6a696960d3b40f81034c9b6216dd04b7d385d61b89ef
3
+ metadata.gz: f2fca23ef48d2e80b98bb9d1c818d64bdfe300f516225ab3fb2e58de21cb79ff
4
+ data.tar.gz: 6ac6ad4750ab6f5c9f17861d2b11988e29b3eaa2b9b49423050315b8bf452335
5
5
  SHA512:
6
- metadata.gz: 1b86fd25116fafe92cd2c3084884884c408f2fc721fadcf56bbf3da19a0d985db215cde49cd96e439473193d8f07701431918feb834169ce84b693f62479d7d3
7
- data.tar.gz: 21460785adf5e2cb4ed1861b07cd21fb89ca5a43ddaf54b73375327838f34f452f17754f4dd732215fc26955d6b531e14d7f8d518d18ce41a777057a09613c2d
6
+ metadata.gz: 22591fe3f2b312e513144be81f76a6bb22d9bbd90046700f0817501c47c42fc45bd366d3efce14f8436619ad21bbaa2fabc085b2cf6f3ba3b128ef72912774ca
7
+ data.tar.gz: 8d4c892dfc884ac89ad1e9ac27e721540c43723452efea56591e067f6607f9ce07d04673bb1b5a720dee76bdf9f86c72231d7275f0fbe53168620d5582eaeccc
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 HashiCorp, Inc.
1
+ Copyright IBM Corp. 2015, 2025
2
2
 
3
3
  Mozilla Public License, version 2.0
4
4
 
data/README.md CHANGED
@@ -7,6 +7,12 @@ Vault is the official Rails plugin for interacting with [Vault](https://vaultpro
7
7
  different APIs than the most recently released version. Please see the Git tag that corresponds to your version of the
8
8
  Vault Rails plugin for the proper documentation.**
9
9
 
10
+ ## Requirements
11
+
12
+ - Ruby 3.2+
13
+ - Rails 7.0+
14
+ - Vault 1.16+ (LTS and current releases supported)
15
+
10
16
  ## Table of Contents
11
17
  1. [Quick Start](#quick-start)
12
18
  1. [Advanced Configuration](#advanced-configuration)
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "active_support/concern"
@@ -329,15 +329,7 @@ module Vault
329
329
 
330
330
  # Only persist changed attributes to minimize requests - this helps
331
331
  # minimize the number of requests to Vault.
332
- if ActiveRecord.gem_version >= Gem::Version.new("6.0")
333
- return unless previous_changes.include?(attribute)
334
- elsif ActiveRecord.gem_version >= Gem::Version.new("5.2")
335
- return unless previous_changes_include?(attribute)
336
- elsif ActiveRecord.gem_version >= Gem::Version.new("5.1")
337
- return unless saved_change_to_attribute?(attribute.to_s)
338
- else
339
- return unless attribute_changed?(attribute)
340
- end
332
+ return unless previous_changes.include?(attribute)
341
333
 
342
334
  # Get the current value of the plaintext attribute
343
335
  plaintext = attributes[attribute.to_s]
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  module Vault
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  module Vault
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  module Vault
@@ -1,8 +1,8 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  module Vault
5
5
  module Rails
6
- VERSION = "0.11.0"
6
+ VERSION = "0.12.0"
7
7
  end
8
8
  end
data/lib/vault/rails.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "vault"
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "binary_serializer"
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
 
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "binary_serializer"
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require File.expand_path('../boot', __FILE__)
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Set up gems listed in the Gemfile.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  development:
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Load the Rails application.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  Rails.application.configure do
@@ -36,9 +36,4 @@ Rails.application.configure do
36
36
 
37
37
  # Raises error for missing translations
38
38
  # config.action_view.raise_on_missing_translations = true
39
-
40
- # Use native SQLite integers as booleans in Rails 5.2+
41
- if ActiveRecord.gem_version >= Gem::Version.new("5.2")
42
- config.active_record.sqlite3.represent_boolean_as_integer = true
43
- end
44
39
  end
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  Rails.application.configure do
@@ -16,13 +16,8 @@ Rails.application.configure do
16
16
  config.eager_load = false
17
17
 
18
18
  # Configure static asset server for tests with Cache-Control for performance.
19
- if config.respond_to?(:public_file_server)
20
- config.public_file_server.enabled = true
21
- config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }
22
- else
23
- config.serve_static_files = true
24
- config.static_cache_control = 'public, max-age=3600'
25
- end
19
+ config.public_file_server.enabled = true
20
+ config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }
26
21
 
27
22
  # Show full error reports and disable caching.
28
23
  config.consider_all_requests_local = true
@@ -41,9 +36,4 @@ Rails.application.configure do
41
36
 
42
37
  # Raises error for missing translations
43
38
  # config.action_view.raise_on_missing_translations = true
44
-
45
- # Use native SQLite integers as booleans in Rails 5.2+
46
- if ActiveRecord.gem_version >= Gem::Version.new("5.2")
47
- config.active_record.sqlite3.represent_boolean_as_integer = true
48
- end
49
39
  end
@@ -1,9 +1,11 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
5
5
 
6
6
  # Version of your assets, change this if you want to expire all your assets.
7
+ # Rails 7+ made the asset pipeline (Sprockets) optional. The assets config
8
+ # only exists if sprockets-rails is in the Gemfile.
7
9
  if Rails.application.config.respond_to?(:assets)
8
10
  Rails.application.config.assets.version = '1.0'
9
11
  end
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "vault/rails"
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
@@ -8,7 +8,7 @@
8
8
 
9
9
  # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
10
10
  ActiveSupport.on_load(:action_controller) do
11
- wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
11
+ wrap_parameters format: [:json]
12
12
  end
13
13
 
14
14
  # To enable root element in JSON for ActiveRecord objects.
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Files in the config/locales directory are used for internationalization
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  Rails.application.routes.draw do
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Be sure to restart your server when you modify this file.
data/spec/dummy/config.ru CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # This file is used by Rack-based servers to start the application.
Binary file
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  class CreatePeople < ActiveRecord::Migration[4.2]
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # This file is auto-generated from the current state of the database. Instead
Binary file
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  # Encodes and decodes binary data.
@@ -0,0 +1,446 @@
1
+  (0.8ms) SELECT sqlite_version(*)
2
+  (1.0ms) SELECT sqlite_version(*)
3
+  (0.4ms) SELECT sqlite_version(*)
4
+  (0.5ms) SELECT sqlite_version(*)
5
+  (0.0ms) SELECT sqlite_version(*)
6
+  (0.4ms) SELECT sqlite_version(*)
7
+  (0.0ms) SELECT sqlite_version(*)
8
+  (0.0ms) DROP TABLE IF EXISTS "people"
9
+  (1.0ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
10
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
11
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
12
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20150428220101)
13
+  (1.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
14
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
15
+  (0.0ms) begin transaction
16
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2026-02-04 19:29:38.238991"], ["updated_at", "2026-02-04 19:29:38.238991"]]
17
+  (0.4ms) commit transaction
18
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
19
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
20
+  (0.0ms) begin transaction
21
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "dfabac74b10fa19940206fda4ea32454ce331fff"], ["created_at", "2026-02-04 19:29:38.242110"], ["updated_at", "2026-02-04 19:29:38.242110"]]
22
+  (0.4ms) commit transaction
23
+  (0.0ms) SELECT sqlite_version(*)
24
+  (0.6ms) DROP TABLE IF EXISTS "people"
25
+  (0.5ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
26
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
27
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
28
+  (0.0ms) begin transaction
29
+ ActiveRecord::InternalMetadata Update (0.1ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "development"], ["updated_at", "2026-02-04 19:29:38.245839"], ["key", "environment"]]
30
+  (0.4ms) commit transaction
31
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
32
+  (0.0ms) begin transaction
33
+ ActiveRecord::InternalMetadata Update (0.1ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2026-02-04 19:29:38.246837"], ["key", "environment"]]
34
+  (0.3ms) commit transaction
35
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
36
+  (0.4ms) SELECT sqlite_version(*)
37
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
38
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
39
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
40
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
41
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
42
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
43
+  (0.0ms) SELECT sqlite_version(*)
44
+  (0.0ms) SELECT sqlite_version(*)
45
+  (0.0ms) DROP TABLE IF EXISTS "people"
46
+  (1.0ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
47
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
48
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
49
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20150428220101)
50
+  (0.5ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
51
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
52
+  (0.0ms) begin transaction
53
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2026-02-04 19:29:46.755288"], ["updated_at", "2026-02-04 19:29:46.755288"]]
54
+  (0.3ms) commit transaction
55
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
56
+  (0.0ms) begin transaction
57
+ ActiveRecord::InternalMetadata Update (0.1ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2026-02-04 19:29:46.756410"], ["key", "environment"]]
58
+  (0.3ms) commit transaction
59
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
60
+  (0.0ms) begin transaction
61
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "dfabac74b10fa19940206fda4ea32454ce331fff"], ["created_at", "2026-02-04 19:29:46.758705"], ["updated_at", "2026-02-04 19:29:46.758705"]]
62
+  (0.2ms) commit transaction
63
+  (0.5ms) SELECT sqlite_version(*)
64
+  (0.0ms) begin transaction
65
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.194689"], ["updated_at", "2026-02-04 19:30:05.194689"]]
66
+ Person Update (0.1ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:OV5CThKUVBlrqTTqCYNxdKqZfdHXwuje/fmIeU4o5cXqrd/oSMLf4vE="], ["id", 1]]
67
+  (0.5ms) commit transaction
68
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
69
+  (0.0ms) begin transaction
70
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.206250"], ["updated_at", "2026-02-04 19:30:05.206250"]]
71
+  (0.4ms) commit transaction
72
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
73
+  (0.0ms) begin transaction
74
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.209450"], ["updated_at", "2026-02-04 19:30:05.209450"]]
75
+  (0.4ms) commit transaction
76
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
77
+  (0.0ms) begin transaction
78
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.212074"], ["updated_at", "2026-02-04 19:30:05.212074"]]
79
+ Person Update (0.0ms) UPDATE "people" SET "default_with_serializer_encrypted" = ? WHERE "people"."id" = ? [["default_with_serializer_encrypted", "vault:v1:MGWygWL/m99ICJyxrwfwxHwbz8kQ2FD3iT6JcnEtWe3uk/ZMNpfYAQw="], ["id", 4]]
80
+  (0.4ms) commit transaction
81
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]]
82
+  (0.1ms) begin transaction
83
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.217456"], ["updated_at", "2026-02-04 19:30:05.217456"]]
84
+ Person Update (0.1ms) UPDATE "people" SET "favorite_color_encrypted" = ? WHERE "people"."id" = ? [["favorite_color_encrypted", "vault:v1:gecbAI8A90VtUDi0MoScaLxmnJKAcz/czKLuG1DYrRK/LW0yA5A="], ["id", 5]]
85
+  (0.5ms) commit transaction
86
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]]
87
+  (0.0ms) begin transaction
88
+ LazyPerson Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.236657"], ["updated_at", "2026-02-04 19:30:05.236657"]]
89
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:mmR7ny/+8UyA0q8jiueRn0Df7Er5qAyR4YR9Ds7zDmeOyLqDT4bD"], ["id", 6]]
90
+  (0.5ms) commit transaction
91
+  (0.0ms) begin transaction
92
+ LazyPerson Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 6]]
93
+  (0.6ms) commit transaction
94
+  (0.1ms) begin transaction
95
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.241508"], ["updated_at", "2026-02-04 19:30:05.241508"]]
96
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:qF9ddRxqgzrPX3yoYthr3K3LO4+pGNlgPpV4CIPCZkowZDh69ozh"], ["id", 7]]
97
+  (0.5ms) commit transaction
98
+  (0.2ms) begin transaction
99
+ LazyPerson Create (0.4ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.246783"], ["updated_at", "2026-02-04 19:30:05.246783"]]
100
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:5FM0EWMYUQ/jikldPpwvt5JJhewSbjvwRhQRvL2ecodETA15WmXW"], ["id", 8]]
101
+  (0.4ms) commit transaction
102
+  (0.0ms) begin transaction
103
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.250209"], ["updated_at", "2026-02-04 19:30:05.250209"]]
104
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:OQd+VjonHH4BvZ3BMzMqITGXA7bhjkVl+awa5OE8Rb7iPc2t0NZKPw=="], ["id", 9]]
105
+  (0.4ms) commit transaction
106
+  (0.0ms) begin transaction
107
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.252983"], ["updated_at", "2026-02-04 19:30:05.252983"]]
108
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:UX2+LA5ZxuVad7kyYQ4zOtIFT2/p+uH3vTVBAbAS9/0w+g6nThzL"], ["id", 10]]
109
+  (0.5ms) commit transaction
110
+  (0.0ms) begin transaction
111
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.255815"], ["updated_at", "2026-02-04 19:30:05.255815"]]
112
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:wP13U7GZZpoiFO+A+OQFzrhIXpQlBJm8zSU7EHAswsUglYpLULrV"], ["id", 11]]
113
+  (0.5ms) commit transaction
114
+  (0.0ms) begin transaction
115
+ LazyPerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.258428"], ["id", 11]]
116
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 11]]
117
+  (0.5ms) commit transaction
118
+ LazyPerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]]
119
+  (0.0ms) begin transaction
120
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.261164"], ["updated_at", "2026-02-04 19:30:05.261164"]]
121
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:cfB5cro7gbMiunmOPRrTIfo/+pymB7q20xt0Ye/oUZ3evr2vw0dX"], ["id", 12]]
122
+  (0.4ms) commit transaction
123
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]]
124
+  (0.0ms) begin transaction
125
+ LazyPerson Create (0.4ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.265189"], ["updated_at", "2026-02-04 19:30:05.265189"]]
126
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:e0lhJUBm5rw+iILwNIgLlzpVBUYa1vUlYUODvN3hzcBNClSPxkO1"], ["id", 13]]
127
+  (0.4ms) commit transaction
128
+ LazyPerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]]
129
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]]
130
+  (0.0ms) begin transaction
131
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.269756"], ["updated_at", "2026-02-04 19:30:05.269756"]]
132
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Qq1M7gKRO9QWbpsgsVjwSS4UkkBaz2De/aBrJKLDGvLWFNFOwaeF"], ["id", 14]]
133
+  (0.7ms) commit transaction
134
+ LazyPerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]]
135
+  (0.0ms) begin transaction
136
+ LazyPerson Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.274632"], ["updated_at", "2026-02-04 19:30:05.274632"]]
137
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:l+wyZeZ6x2Oq5ikYp9RkvHut3xkIiogWqd098vHObxUyQPB7X/Xy"], ["id", 15]]
138
+  (0.5ms) commit transaction
139
+  (0.0ms) begin transaction
140
+ LazyPerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.277437"], ["id", 15]]
141
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 15]]
142
+  (0.5ms) commit transaction
143
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]]
144
+  (0.0ms) begin transaction
145
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.280129"], ["updated_at", "2026-02-04 19:30:05.280129"]]
146
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:w49ebK2k5EwWxvKZeBIIMCns6Ev/pz9t8t9O729Ycj7NsbvgYv0g"], ["id", 16]]
147
+  (0.4ms) commit transaction
148
+  (0.0ms) begin transaction
149
+ LazyPerson Update (0.2ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2026-02-04 19:30:05.290953"], ["id", 16]]
150
+  (2.8ms) commit transaction
151
+  (0.0ms) begin transaction
152
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.295773"], ["updated_at", "2026-02-04 19:30:05.295773"]]
153
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:BjRPXaxtqR7S/J7cyugmXneEAtqS0Vmxe2qtZSl6f1YMbrnuQMhY"], ["id", 17]]
154
+  (0.7ms) commit transaction
155
+ LazyPerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]]
156
+  (0.0ms) begin transaction
157
+ LazyPerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.301952"], ["id", 17]]
158
+ LazyPerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 17]]
159
+  (0.5ms) commit transaction
160
+ LazyPerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]]
161
+  (0.0ms) begin transaction
162
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.304515"], ["updated_at", "2026-02-04 19:30:05.304515"]]
163
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:f00jAFbkU13i5c+r4psSCkliTS2XrGLA1dPtXsdVylTn/jOs5eog"], ["id", 18]]
164
+  (0.4ms) commit transaction
165
+  (0.0ms) begin transaction
166
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.308524"], ["updated_at", "2026-02-04 19:30:05.308524"]]
167
+ Person Update (0.1ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:58arIegf26yfRWFUjkFJYSswvgWC6tsHy5Xxs7DqdhG4a7RvvEzwIMlA7mGU/OE9Mg=="], ["id", 19]]
168
+  (0.4ms) commit transaction
169
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]]
170
+  (0.0ms) begin transaction
171
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.314952"], ["updated_at", "2026-02-04 19:30:05.314952"]]
172
+ Person Update (0.1ms) UPDATE "people" SET "details_encrypted" = ? WHERE "people"."id" = ? [["details_encrypted", "vault:v1:sU7zknq457U1BPw+npC8Ty1BdXKA5NTMwxa08uPwdQ9M/ou6NGKKofw="], ["id", 20]]
173
+  (0.5ms) commit transaction
174
+  (0.0ms) begin transaction
175
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.317922"], ["updated_at", "2026-02-04 19:30:05.317922"]]
176
+  (0.5ms) commit transaction
177
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 21], ["LIMIT", 1]]
178
+  (0.0ms) begin transaction
179
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.326927"], ["updated_at", "2026-02-04 19:30:05.326927"]]
180
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ttXJsCDTqcjUUUShGC7BoRpbVSxam+NELN6qmQlONPcwkx+Iba35"], ["id", 22]]
181
+  (0.5ms) commit transaction
182
+  (0.0ms) begin transaction
183
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2026-02-04 19:30:05.329556"], ["id", 22]]
184
+  (0.4ms) commit transaction
185
+  (0.0ms) begin transaction
186
+ LazySinglePerson Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.330794"], ["updated_at", "2026-02-04 19:30:05.330794"]]
187
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:YtA00vO0rQlasdf7WILNlbLGtsBREZ4rqUHXwDQ44mH1mF+xIJV2"], ["id", 23]]
188
+  (0.3ms) commit transaction
189
+  (0.0ms) begin transaction
190
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.332398"], ["id", 23]]
191
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:gZhqHyg778wQKsjBXKJMPt0xyW4TjBpUJMA2+RZJ/HrJrtP57kcOyZPKe67A3Lo="], ["id", 23]]
192
+  (0.5ms) commit transaction
193
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]]
194
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]]
195
+  (0.0ms) begin transaction
196
+ LazySinglePerson Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.336310"], ["updated_at", "2026-02-04 19:30:05.336310"]]
197
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:QJGfjaqPlzMFuPZbWq5qABOmShDUwuUVgFfAEjdUFFeP2JR48ofSMg=="], ["id", 24]]
198
+  (1.2ms) commit transaction
199
+  (0.0ms) begin transaction
200
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.341909"], ["updated_at", "2026-02-04 19:30:05.341909"]]
201
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:vLgIdlj9TmEdn/Fm8EHXBRYmkMTQ4MTvpLgtpFUKj2XBOvTDnC0V"], ["id", 25]]
202
+  (0.5ms) commit transaction
203
+  (0.0ms) begin transaction
204
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.343989"], ["id", 25]]
205
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 25]]
206
+  (0.5ms) commit transaction
207
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]]
208
+  (0.0ms) begin transaction
209
+ LazyPerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.345983"], ["updated_at", "2026-02-04 19:30:05.345983"]]
210
+ LazyPerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:NZA3VfgnQuTF4TrKavnpFhLH8wUF0tIzM/+l+KjRA23gngE/1Mzi"], ["id", 26]]
211
+  (0.5ms) commit transaction
212
+  (0.0ms) begin transaction
213
+ LazyPerson Destroy (0.2ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 26]]
214
+  (0.5ms) commit transaction
215
+  (0.0ms) begin transaction
216
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.350637"], ["updated_at", "2026-02-04 19:30:05.350637"]]
217
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:mAJlFhjYM3g+4W1k8pAboamPU836GE/h3gW0iEkGRpmcvMTP5MAe"], ["id", 27]]
218
+  (0.7ms) commit transaction
219
+  (0.0ms) begin transaction
220
+ LazySinglePerson Update (0.3ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.353220"], ["id", 27]]
221
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 27]]
222
+  (0.5ms) commit transaction
223
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]]
224
+  (0.0ms) begin transaction
225
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.355323"], ["updated_at", "2026-02-04 19:30:05.355323"]]
226
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:q0LtKXW2rEttC3aKTAu+UQa1O41OYt/ua3lScoKEh1tWMsMU55kU"], ["id", 28]]
227
+  (0.6ms) commit transaction
228
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]]
229
+  (0.0ms) begin transaction
230
+ LazySinglePerson Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.358949"], ["updated_at", "2026-02-04 19:30:05.358949"]]
231
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:icIorAjcdCwdVym3wKFWfVXuhUG7zc/R6j2Zc2A7LTISBG8JTwc0"], ["id", 29]]
232
+  (0.4ms) commit transaction
233
+ LazySinglePerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]]
234
+  (0.0ms) begin transaction
235
+ LazySinglePerson Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.365765"], ["updated_at", "2026-02-04 19:30:05.365765"]]
236
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:FWJkYCi8XCCBT5Bl6EuqTBBinUvqCMKwetonqql8seLSaFavS2xO"], ["id", 30]]
237
+  (0.5ms) commit transaction
238
+  (0.0ms) begin transaction
239
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.369114"], ["updated_at", "2026-02-04 19:30:05.369114"]]
240
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Qgb2A9pEfAy/w15qFbV4Z/CizObUbw6Omgju0zTfVXTovCtvfhGN"], ["id", 31]]
241
+  (0.4ms) commit transaction
242
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]]
243
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]]
244
+  (0.0ms) begin transaction
245
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.372605"], ["updated_at", "2026-02-04 19:30:05.372605"]]
246
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:ClW5qql5BuIQKsWyUfXO3ZQkA7iwV6Tjv/Wrc1akSdQ+7VldmtQx"], ["id", 32]]
247
+  (0.5ms) commit transaction
248
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]]
249
+  (0.0ms) begin transaction
250
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.375722"], ["id", 32]]
251
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 32]]
252
+  (0.6ms) commit transaction
253
+ LazySinglePerson Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]]
254
+  (0.0ms) begin transaction
255
+ LazySinglePerson Create (0.4ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.377711"], ["updated_at", "2026-02-04 19:30:05.377711"]]
256
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:FitjSrhlwZ62Kak/5l4Hm/TTMpYprhtJW5UqK3HKYu7TJDn98/tJ"], ["id", 33]]
257
+  (0.4ms) commit transaction
258
+  (0.0ms) begin transaction
259
+ LazySinglePerson Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.379953"], ["id", 33]]
260
+ LazySinglePerson Update (0.1ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:QrdXBKXotvMqnhSbxZteiaMIeBiSpL7eMfPEVSfMhh23OKsUm0/obqtlPLfVD1E="], ["id", 33]]
261
+  (0.6ms) commit transaction
262
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]]
263
+ LazySinglePerson Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]]
264
+  (0.0ms) begin transaction
265
+ LazySinglePerson Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.384737"], ["updated_at", "2026-02-04 19:30:05.384737"]]
266
+ LazySinglePerson Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:Ov49VghF2lm80eo1LgmZ1vYXKPTPkm9nzIXMycpVpFwI+DW9DiFZ"], ["id", 34]]
267
+  (0.4ms) commit transaction
268
+  (0.0ms) begin transaction
269
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.387805"], ["updated_at", "2026-02-04 19:30:05.387805"]]
270
+ Person Update (0.1ms) UPDATE "people" SET "business_card_encrypted" = ? WHERE "people"."id" = ? [["business_card_encrypted", "vault:v1:xo3H22M1ifWlVjm0gDV6ZDsLgOzoL6SIwrDlXpA0qGiYrecQTrErBdvYxZfcGTUNbCKQqW5QMYEIpPDo"], ["id", 35]]
271
+  (0.7ms) commit transaction
272
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]]
273
+  (0.0ms) begin transaction
274
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.395069"], ["updated_at", "2026-02-04 19:30:05.395069"]]
275
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:exHATwc1U0RkBiXmUZEBFMwLe29xGb1EJt9MbvAHQErayv+dXHFtHA=="], ["id", 36]]
276
+  (0.4ms) commit transaction
277
+  (0.0ms) begin transaction
278
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.397690"], ["updated_at", "2026-02-04 19:30:05.397690"]]
279
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:2TAdjXxGrXQAl5YL9cC9fcNaGwCTMWnLBYmGtjPuKfZ1wpypsMrJ7Q=="], ["id", 37]]
280
+  (0.3ms) commit transaction
281
+  (0.0ms) begin transaction
282
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.400264"], ["id", 37]]
283
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", ""], ["id", 37]]
284
+  (0.5ms) commit transaction
285
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 37], ["LIMIT", 1]]
286
+  (0.0ms) begin transaction
287
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.403277"], ["updated_at", "2026-02-04 19:30:05.403277"]]
288
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:mnyWJ3NeufKCFUY77tmCpglEVxrBT3OCGm1itpMipSnur72CNyk4+Q=="], ["id", 38]]
289
+  (0.4ms) commit transaction
290
+  (0.0ms) begin transaction
291
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.405511"], ["id", 38]]
292
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", nil], ["id", 38]]
293
+  (0.6ms) commit transaction
294
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]]
295
+  (0.0ms) begin transaction
296
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.408442"], ["updated_at", "2026-02-04 19:30:05.408442"]]
297
+ Person Update (0.1ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:BJ6JoxNEqcnRzSXYMVjz/sSC5E1LIgBVnr2sVfhAeVgiviSbjYLD2g=="], ["id", 39]]
298
+  (0.4ms) commit transaction
299
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 39], ["LIMIT", 1]]
300
+  (0.0ms) begin transaction
301
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.413311"], ["updated_at", "2026-02-04 19:30:05.413311"]]
302
+ Person Update (0.0ms) UPDATE "people" SET "non_ascii_encrypted" = ? WHERE "people"."id" = ? [["non_ascii_encrypted", "vault:v1:6nGMHul33aTFGmI60xrsV/FZ0C68AW2MaCOymsucfbQYygY41M/N3A=="], ["id", 40]]
303
+  (0.4ms) commit transaction
304
+  (0.0ms) begin transaction
305
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.416325"], ["updated_at", "2026-02-04 19:30:05.416325"]]
306
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
307
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 41]]
308
+  (0.4ms) commit transaction
309
+  (0.0ms) begin transaction
310
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.418828"], ["updated_at", "2026-02-04 19:30:05.418828"]]
311
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
312
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:dev:lP7BST3fnuhVpzSepVlWIiZcbw2l4eYTMRk1pHwy0g4="], ["id", 42]]
313
+  (0.4ms) commit transaction
314
+ Person Load (0.1ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 42], ["LIMIT", 1]]
315
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
316
+ [vault-rails] Using in-memory cipher - this is not secure and should never be used in production-like environments!
317
+  (0.0ms) begin transaction
318
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.422232"], ["updated_at", "2026-02-04 19:30:05.422232"]]
319
+ Person Update (0.0ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:TcIOTuTB2UMjtz5uFkgO1a+UL6rWQ8X3TsN8L9eJHpkpUJE="], ["id", 43]]
320
+  (0.4ms) commit transaction
321
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 43], ["LIMIT", 1]]
322
+  (0.0ms) begin transaction
323
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.426960"], ["updated_at", "2026-02-04 19:30:05.426960"]]
324
+  (0.4ms) commit transaction
325
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 44], ["LIMIT", 1]]
326
+  (0.0ms) begin transaction
327
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.429423"], ["updated_at", "2026-02-04 19:30:05.429423"]]
328
+  (0.3ms) commit transaction
329
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 45], ["LIMIT", 1]]
330
+  (0.0ms) begin transaction
331
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.434745"], ["updated_at", "2026-02-04 19:30:05.434745"]]
332
+ Person Update (0.1ms) UPDATE "people" SET "default_encrypted" = ? WHERE "people"."id" = ? [["default_encrypted", "vault:v1:f0Iv7C5Lh+xKsZirA+iJGCHNVJRo07B6n9tgnN0ZxAAbvoA="], ["id", 46]]
333
+  (0.3ms) commit transaction
334
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 46], ["LIMIT", 1]]
335
+  (0.0ms) begin transaction
336
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.441455"], ["updated_at", "2026-02-04 19:30:05.441455"]]
337
+ Person Update (0.1ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:1iKrTlfr9MSpNWyApUP3it1BMTzrbjTSW0WZLnqwMJeS8B11gsMX"], ["id", 47]]
338
+  (0.4ms) commit transaction
339
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 47], ["LIMIT", 1]]
340
+  (0.0ms) begin transaction
341
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.445625"], ["updated_at", "2026-02-04 19:30:05.445625"]]
342
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:2G0S8LK6R4W5NzOXAzlGUj+TQ/8Sa6XWVqjjo80PEJMjY1MmaSJM"], ["id", 48]]
343
+  (0.3ms) commit transaction
344
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 48], ["LIMIT", 1]]
345
+  (0.0ms) begin transaction
346
+ Person Update (0.2ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.449327"], ["id", 48]]
347
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 48]]
348
+  (0.5ms) commit transaction
349
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 48], ["LIMIT", 1]]
350
+  (0.0ms) begin transaction
351
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.451996"], ["updated_at", "2026-02-04 19:30:05.451996"]]
352
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:BNm9yQluOluOQsjfbBadEAGIML/OjY5T80+jElAOb1QNKKd+ycx+"], ["id", 49]]
353
+  (0.3ms) commit transaction
354
+  (0.0ms) begin transaction
355
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.453851"], ["id", 49]]
356
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", ""], ["id", 49]]
357
+  (0.3ms) commit transaction
358
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 49], ["LIMIT", 1]]
359
+  (0.0ms) begin transaction
360
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.455986"], ["updated_at", "2026-02-04 19:30:05.455986"]]
361
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:jW440S4vJlAvL6TO/shOEBBBvwYyWzuB9CZ24d6PSKAKBkDY9tM/"], ["id", 50]]
362
+  (0.3ms) commit transaction
363
+  (0.1ms) begin transaction
364
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.457641"], ["id", 50]]
365
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 50]]
366
+  (0.4ms) commit transaction
367
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 50], ["LIMIT", 1]]
368
+  (0.0ms) begin transaction
369
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.460100"], ["updated_at", "2026-02-04 19:30:05.460100"]]
370
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:2tnBfcdEbmTA/kSNyD4Er8wHv+NDuJZ0LITzjiCK2x9My2FT2tjj"], ["id", 51]]
371
+  (0.3ms) commit transaction
372
+  (0.0ms) begin transaction
373
+ Person Destroy (0.1ms) DELETE FROM "people" WHERE "people"."id" = ? [["id", 51]]
374
+  (0.4ms) commit transaction
375
+  (0.0ms) begin transaction
376
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.463593"], ["updated_at", "2026-02-04 19:30:05.463593"]]
377
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:gpKatLy4DT5VCIv1WnSFC8xniJkcM2fXXzW3A/FkSEoneHMZiULZ"], ["id", 52]]
378
+  (0.3ms) commit transaction
379
+  (0.0ms) begin transaction
380
+ Person Update (0.1ms) UPDATE "people" SET "name" = ?, "updated_at" = ? WHERE "people"."id" = ? [["name", "Cinderella"], ["updated_at", "2026-02-04 19:30:05.465362"], ["id", 52]]
381
+  (0.3ms) commit transaction
382
+  (0.0ms) begin transaction
383
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.466737"], ["updated_at", "2026-02-04 19:30:05.466737"]]
384
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:yj1uwv6oK35elUow558BvTte+tmxMxL84Qz2TjZxePstUDtDcqpX"], ["id", 53]]
385
+  (0.3ms) commit transaction
386
+  (0.0ms) begin transaction
387
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.468566"], ["updated_at", "2026-02-04 19:30:05.468566"]]
388
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:6mHHOFB6HZRWP+b8RoVTc10T3aDMpwz9AzrU6LziDgvHIQY3Sxo7"], ["id", 54]]
389
+  (0.2ms) commit transaction
390
+  (0.0ms) begin transaction
391
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.470357"], ["updated_at", "2026-02-04 19:30:05.470357"]]
392
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:SickLnPx9A1Du3nUPjES+7xvJv3phA6/RxWUmI5/VkYOvFKe1BhI"], ["id", 55]]
393
+  (0.3ms) commit transaction
394
+  (0.0ms) begin transaction
395
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.472554"], ["updated_at", "2026-02-04 19:30:05.472554"]]
396
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:zpGIFZafFSeWCIukheU4NC5C9032tf/P4R27F4coW2BF7TKGrO+Ahw=="], ["id", 56]]
397
+  (0.3ms) commit transaction
398
+  (0.0ms) begin transaction
399
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.474704"], ["updated_at", "2026-02-04 19:30:05.474704"]]
400
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:GMlaeWNmh3SqQZ0sTvZEHdAQAVVWpqp36qjvS2B3qPB7VbEDH6nI"], ["id", 57]]
401
+  (0.3ms) commit transaction
402
+  (0.0ms) begin transaction
403
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.476566"], ["updated_at", "2026-02-04 19:30:05.476566"]]
404
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:+WCaVbAvLWvaLWdc3GrVLdc23wA+/cQ3rXFg8rWlVf/Ytc4gdO70"], ["id", 58]]
405
+  (0.3ms) commit transaction
406
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 58], ["LIMIT", 1]]
407
+  (0.0ms) begin transaction
408
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.480281"], ["updated_at", "2026-02-04 19:30:05.480281"]]
409
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", "vault:v1:7XMKmCFj+ljOlgZM9/CVCuVlawukMYdfmoOjTCr54iGOq6EOim5h"], ["id", 59]]
410
+  (0.3ms) commit transaction
411
+  (0.0ms) begin transaction
412
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.482311"], ["id", 59]]
413
+ Person Update (0.0ms) UPDATE "people" SET "ssn_encrypted" = ? WHERE "people"."id" = ? [["ssn_encrypted", nil], ["id", 59]]
414
+  (0.3ms) commit transaction
415
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 59], ["LIMIT", 1]]
416
+  (0.0ms) begin transaction
417
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.485922"], ["updated_at", "2026-02-04 19:30:05.485922"]]
418
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:cX/vqY6XZOCYG41Dx9SsFOtQoBirlxDFN/KHA5VOI82VZ/DouRj0EMv2Ovw="], ["id", 60]]
419
+  (0.3ms) commit transaction
420
+  (0.0ms) begin transaction
421
+ Person Create (0.3ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.489657"], ["updated_at", "2026-02-04 19:30:05.489657"]]
422
+ Person Update (0.1ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:7DIrnaLSnGDmJK3DNYaxA6imYmzAVt2fm9VInh7N0N7/1AmCFRhUUw2GLvw="], ["id", 61]]
423
+  (0.4ms) commit transaction
424
+  (0.0ms) begin transaction
425
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.492387"], ["updated_at", "2026-02-04 19:30:05.492387"]]
426
+ Person Update (0.4ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:izHY4XD3hjfykMyZh9uJiPmhzLdi2g9uX4mOBJ0xSpBNBzWIUc7/1Usww70="], ["id", 62]]
427
+  (0.4ms) commit transaction
428
+  (0.0ms) begin transaction
429
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.494975"], ["id", 62]]
430
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", nil], ["id", 62]]
431
+  (0.3ms) commit transaction
432
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 62], ["LIMIT", 1]]
433
+  (0.0ms) begin transaction
434
+ Person Create (0.1ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.497164"], ["updated_at", "2026-02-04 19:30:05.497164"]]
435
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:w6eoNKXeLI/qRaguwE/lDiIq+Ztm36t5Rwqu8qYmExFZcm2LqaSMHUMkTjM="], ["id", 63]]
436
+  (0.4ms) commit transaction
437
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 63], ["LIMIT", 1]]
438
+  (0.0ms) begin transaction
439
+ Person Create (0.2ms) INSERT INTO "people" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2026-02-04 19:30:05.501211"], ["updated_at", "2026-02-04 19:30:05.501211"]]
440
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", "vault:v1:9jQd8cvBhKZRO5f5US/t9fzjYBYPb/tRuXhmf3CLVCy0ML28gopiVAOhAwU="], ["id", 64]]
441
+  (0.3ms) commit transaction
442
+  (0.0ms) begin transaction
443
+ Person Update (0.1ms) UPDATE "people" SET "updated_at" = ? WHERE "people"."id" = ? [["updated_at", "2026-02-04 19:30:05.503117"], ["id", 64]]
444
+ Person Update (0.0ms) UPDATE "people" SET "cc_encrypted" = ? WHERE "people"."id" = ? [["cc_encrypted", ""], ["id", 64]]
445
+  (0.5ms) commit transaction
446
+ Person Load (0.0ms) SELECT "people".* FROM "people" WHERE "people"."id" = ? LIMIT ? [["id", 64], ["LIMIT", 1]]
@@ -0,0 +1,55 @@
1
+  (0.4ms) SELECT sqlite_version(*)
2
+  (0.0ms) SELECT sqlite_version(*)
3
+  (0.0ms) SELECT sqlite_version(*)
4
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
5
+  (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
6
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7
+ Migrating to CreatePeople (20150428220101)
8
+  (0.0ms) begin transaction
9
+  (0.2ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
10
+ ActiveRecord::SchemaMigration Create (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150428220101"]]
11
+  (0.5ms) commit transaction
12
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
13
+  (0.0ms) begin transaction
14
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-02-04 19:27:06.877490"], ["updated_at", "2026-02-04 19:27:06.877490"]]
15
+  (0.2ms) commit transaction
16
+  (0.0ms) SELECT sqlite_version(*)
17
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
18
+  (0.4ms) SELECT sqlite_version(*)
19
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
20
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
21
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
22
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
23
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
24
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
25
+  (0.0ms) SELECT sqlite_version(*)
26
+  (0.0ms) SELECT sqlite_version(*)
27
+  (0.0ms) DROP TABLE IF EXISTS "people"
28
+  (1.2ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
29
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
30
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
31
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES (20150428220101)
32
+  (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
33
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
34
+  (0.0ms) begin transaction
35
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2026-02-04 19:28:18.804737"], ["updated_at", "2026-02-04 19:28:18.804737"]]
36
+  (0.4ms) commit transaction
37
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
38
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
39
+  (0.0ms) begin transaction
40
+ ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "dfabac74b10fa19940206fda4ea32454ce331fff"], ["created_at", "2026-02-04 19:28:18.821083"], ["updated_at", "2026-02-04 19:28:18.821083"]]
41
+  (0.3ms) commit transaction
42
+  (0.5ms) SELECT sqlite_version(*)
43
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
44
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
45
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
46
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
47
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
48
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
49
+  (0.0ms) SELECT sqlite_version(*)
50
+  (0.8ms) DROP TABLE IF EXISTS "people"
51
+  (0.7ms) CREATE TABLE "people" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "ssn_encrypted" varchar, "cc_encrypted" varchar, "details_encrypted" varchar, "business_card_encrypted" varchar, "favorite_color_encrypted" varchar, "non_ascii_encrypted" varchar, "default_encrypted" varchar, "default_with_serializer_encrypted" varchar, "context_string_encrypted" varchar, "context_symbol_encrypted" varchar, "context_proc_encrypted" varchar, "transform_ssn_encrypted" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
52
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
53
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
54
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
55
+ ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]
@@ -1,6 +1,6 @@
1
1
  <!DOCTYPE html>
2
2
  <!--
3
- Copyright (c) HashiCorp, Inc.
3
+ Copyright IBM Corp. 2015, 2025
4
4
  SPDX-License-Identifier: MPL-2.0
5
5
  -->
6
6
 
@@ -1,6 +1,6 @@
1
1
  <!DOCTYPE html>
2
2
  <!--
3
- Copyright (c) HashiCorp, Inc.
3
+ Copyright IBM Corp. 2015, 2025
4
4
  SPDX-License-Identifier: MPL-2.0
5
5
  -->
6
6
 
@@ -1,6 +1,6 @@
1
1
  <!DOCTYPE html>
2
2
  <!--
3
- Copyright (c) HashiCorp, Inc.
3
+ Copyright IBM Corp. 2015, 2025
4
4
  SPDX-License-Identifier: MPL-2.0
5
5
  -->
6
6
 
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- # Copyright (c) HashiCorp, Inc.
2
+ # Copyright IBM Corp. 2015, 2025
3
3
  # SPDX-License-Identifier: MPL-2.0
4
4
 
5
5
 
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require 'spec_helper'
data/spec/spec_helper.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  $LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "open-uri"
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "spec_helper"
@@ -6,6 +6,8 @@ require "spec_helper"
6
6
  describe Vault::EncryptedModel do
7
7
  let(:klass) do
8
8
  Class.new(ActiveRecord::Base) do
9
+ # Rails 7.2+ requires table_name to be set explicitly for anonymous classes
10
+ self.table_name = "people"
9
11
  include Vault::EncryptedModel
10
12
  end
11
13
  end
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "spec_helper"
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require "spec_helper"
@@ -1,4 +1,4 @@
1
- # Copyright (c) HashiCorp, Inc.
1
+ # Copyright IBM Corp. 2015, 2025
2
2
  # SPDX-License-Identifier: MPL-2.0
3
3
 
4
4
  require 'spec_helper'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vault-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Vargo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-04 00:00:00.000000000 Z
11
+ date: 2026-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '5.0'
19
+ version: '7.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '5.0'
26
+ version: '7.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: vault
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.19'
33
+ version: '0.20'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.19'
40
+ version: '0.20'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mutex_m
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -140,16 +140,16 @@ dependencies:
140
140
  name: sqlite3
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - "~>"
143
+ - - ">="
144
144
  - !ruby/object:Gem::Version
145
- version: 1.3.6
145
+ version: '1.4'
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - "~>"
150
+ - - ">="
151
151
  - !ruby/object:Gem::Version
152
- version: 1.3.6
152
+ version: '1.4'
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: ostruct
155
155
  requirement: !ruby/object:Gem::Requirement
@@ -206,9 +206,13 @@ files:
206
206
  - spec/dummy/config/locales/en.yml
207
207
  - spec/dummy/config/routes.rb
208
208
  - spec/dummy/config/secrets.yml
209
+ - spec/dummy/db/development.sqlite3
209
210
  - spec/dummy/db/migrate/20150428220101_create_people.rb
210
211
  - spec/dummy/db/schema.rb
212
+ - spec/dummy/db/test.sqlite3
211
213
  - spec/dummy/lib/binary_serializer.rb
214
+ - spec/dummy/log/development.log
215
+ - spec/dummy/log/test.log
212
216
  - spec/dummy/public/404.html
213
217
  - spec/dummy/public/422.html
214
218
  - spec/dummy/public/500.html
@@ -233,7 +237,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
233
237
  requirements:
234
238
  - - ">="
235
239
  - !ruby/object:Gem::Version
236
- version: '3.1'
240
+ version: '3.2'
237
241
  required_rubygems_version: !ruby/object:Gem::Requirement
238
242
  requirements:
239
243
  - - ">="
@@ -271,9 +275,13 @@ test_files:
271
275
  - spec/dummy/config/routes.rb
272
276
  - spec/dummy/config/secrets.yml
273
277
  - spec/dummy/config.ru
278
+ - spec/dummy/db/development.sqlite3
274
279
  - spec/dummy/db/migrate/20150428220101_create_people.rb
275
280
  - spec/dummy/db/schema.rb
281
+ - spec/dummy/db/test.sqlite3
276
282
  - spec/dummy/lib/binary_serializer.rb
283
+ - spec/dummy/log/development.log
284
+ - spec/dummy/log/test.log
277
285
  - spec/dummy/public/404.html
278
286
  - spec/dummy/public/422.html
279
287
  - spec/dummy/public/500.html