From 1b9376fb896b57344c4a5473cb1ac0cb3d1a76ea Mon Sep 17 00:00:00 2001 From: "hashicorp-copywrite[bot]" <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Date: Fri, 5 Dec 2025 04:41:09 +0000 Subject: [PATCH] [COMPLIANCE] Update Copyright and License Headers (Batch 1 of 1) --- Gemfile | 2 +- lib/vault.rb | 2 +- lib/vault/api.rb | 2 +- lib/vault/api/approle.rb | 2 +- lib/vault/api/auth.rb | 2 +- lib/vault/api/auth_tls.rb | 2 +- lib/vault/api/auth_token.rb | 2 +- lib/vault/api/help.rb | 2 +- lib/vault/api/kv.rb | 2 +- lib/vault/api/logical.rb | 2 +- lib/vault/api/secret.rb | 2 +- lib/vault/api/sys.rb | 2 +- lib/vault/api/sys/audit.rb | 2 +- lib/vault/api/sys/auth.rb | 2 +- lib/vault/api/sys/health.rb | 2 +- lib/vault/api/sys/init.rb | 2 +- lib/vault/api/sys/leader.rb | 2 +- lib/vault/api/sys/lease.rb | 2 +- lib/vault/api/sys/mount.rb | 2 +- lib/vault/api/sys/namespace.rb | 2 +- lib/vault/api/sys/policy.rb | 2 +- lib/vault/api/sys/quota.rb | 2 +- lib/vault/api/sys/seal.rb | 2 +- lib/vault/api/transform.rb | 2 +- lib/vault/api/transform/alphabet.rb | 2 +- lib/vault/api/transform/role.rb | 2 +- lib/vault/api/transform/template.rb | 2 +- lib/vault/api/transform/transformation.rb | 2 +- lib/vault/client.rb | 2 +- lib/vault/configurable.rb | 2 +- lib/vault/defaults.rb | 2 +- lib/vault/encode.rb | 2 +- lib/vault/errors.rb | 2 +- lib/vault/request.rb | 2 +- lib/vault/response.rb | 2 +- lib/vault/version.rb | 2 +- spec/integration/api/approle_spec.rb | 2 +- spec/integration/api/auth_spec.rb | 2 +- spec/integration/api/auth_tls_spec.rb | 2 +- spec/integration/api/auth_token_spec.rb | 2 +- spec/integration/api/help_spec.rb | 2 +- spec/integration/api/kv_spec.rb | 2 +- spec/integration/api/logical_spec.rb | 2 +- spec/integration/api/sys/audit_spec.rb | 2 +- spec/integration/api/sys/auth_spec.rb | 2 +- spec/integration/api/sys/health_spec.rb | 2 +- spec/integration/api/sys/init_spec.rb | 2 +- spec/integration/api/sys/leader_spec.rb | 2 +- spec/integration/api/sys/lease_spec.rb | 2 +- spec/integration/api/sys/mount_spec.rb | 2 +- spec/integration/api/sys/namespace_spec.rb | 2 +- spec/integration/api/sys/policy_spec.rb | 2 +- spec/integration/api/sys/quota_spec.rb | 2 +- spec/integration/api/sys/seal_spec.rb | 2 +- spec/integration/api/transform_spec.rb | 2 +- spec/integration/client_spec.rb | 2 +- spec/integration/redirection_spec.rb | 2 +- spec/spec_helper.rb | 2 +- spec/support/redirect_server.rb | 2 +- spec/support/sample_certificate.rb | 2 +- spec/support/vault_server.rb | 2 +- spec/unit/auth_spec.rb | 2 +- spec/unit/client_spec.rb | 2 +- spec/unit/defaults_spec.rb | 2 +- spec/unit/response_spec.rb | 2 +- spec/unit/vault_spec.rb | 2 +- 66 files changed, 66 insertions(+), 66 deletions(-) diff --git a/Gemfile b/Gemfile index 3b155adb..c4b55efe 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 source "https://rubygems.org" diff --git a/lib/vault.rb b/lib/vault.rb index dc9066a1..41993ce4 100644 --- a/lib/vault.rb +++ b/lib/vault.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/api.rb b/lib/vault/api.rb index 197680a8..a53896dd 100644 --- a/lib/vault/api.rb +++ b/lib/vault/api.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/api/approle.rb b/lib/vault/api/approle.rb index 67cda2c2..e9d9ae4c 100644 --- a/lib/vault/api/approle.rb +++ b/lib/vault/api/approle.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/auth.rb b/lib/vault/api/auth.rb index be8df765..a244dac7 100644 --- a/lib/vault/api/auth.rb +++ b/lib/vault/api/auth.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/auth_tls.rb b/lib/vault/api/auth_tls.rb index d53b1598..53cab0ec 100644 --- a/lib/vault/api/auth_tls.rb +++ b/lib/vault/api/auth_tls.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/auth_token.rb b/lib/vault/api/auth_token.rb index 1a6a65d7..91a92d22 100644 --- a/lib/vault/api/auth_token.rb +++ b/lib/vault/api/auth_token.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/help.rb b/lib/vault/api/help.rb index d1737e3b..1fecf7d0 100644 --- a/lib/vault/api/help.rb +++ b/lib/vault/api/help.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative "../client" diff --git a/lib/vault/api/kv.rb b/lib/vault/api/kv.rb index 4e155291..8c898c04 100644 --- a/lib/vault/api/kv.rb +++ b/lib/vault/api/kv.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative "secret" diff --git a/lib/vault/api/logical.rb b/lib/vault/api/logical.rb index c1120de7..e176955e 100644 --- a/lib/vault/api/logical.rb +++ b/lib/vault/api/logical.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative "secret" diff --git a/lib/vault/api/secret.rb b/lib/vault/api/secret.rb index fb284ca9..76864909 100644 --- a/lib/vault/api/secret.rb +++ b/lib/vault/api/secret.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "time" diff --git a/lib/vault/api/sys.rb b/lib/vault/api/sys.rb index 24a0c3e4..2283e198 100644 --- a/lib/vault/api/sys.rb +++ b/lib/vault/api/sys.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative "../client" diff --git a/lib/vault/api/sys/audit.rb b/lib/vault/api/sys/audit.rb index 1f0e97ac..d08816ae 100644 --- a/lib/vault/api/sys/audit.rb +++ b/lib/vault/api/sys/audit.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/sys/auth.rb b/lib/vault/api/sys/auth.rb index 1e6e4d54..98617b4e 100644 --- a/lib/vault/api/sys/auth.rb +++ b/lib/vault/api/sys/auth.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/sys/health.rb b/lib/vault/api/sys/health.rb index 35bc102e..bf985faa 100644 --- a/lib/vault/api/sys/health.rb +++ b/lib/vault/api/sys/health.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/sys/init.rb b/lib/vault/api/sys/init.rb index 5dbdc83b..312d0101 100644 --- a/lib/vault/api/sys/init.rb +++ b/lib/vault/api/sys/init.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/sys/leader.rb b/lib/vault/api/sys/leader.rb index cb39d410..fbf0f222 100644 --- a/lib/vault/api/sys/leader.rb +++ b/lib/vault/api/sys/leader.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/api/sys/lease.rb b/lib/vault/api/sys/lease.rb index c60be3dd..fb4b5021 100644 --- a/lib/vault/api/sys/lease.rb +++ b/lib/vault/api/sys/lease.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/api/sys/mount.rb b/lib/vault/api/sys/mount.rb index fcc207c9..01e87e5a 100644 --- a/lib/vault/api/sys/mount.rb +++ b/lib/vault/api/sys/mount.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/sys/namespace.rb b/lib/vault/api/sys/namespace.rb index e7049a87..0da4127e 100644 --- a/lib/vault/api/sys/namespace.rb +++ b/lib/vault/api/sys/namespace.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/api/sys/policy.rb b/lib/vault/api/sys/policy.rb index 0a3241f9..7b0fafb2 100644 --- a/lib/vault/api/sys/policy.rb +++ b/lib/vault/api/sys/policy.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/sys/quota.rb b/lib/vault/api/sys/quota.rb index 64c9a047..e62dcb7b 100644 --- a/lib/vault/api/sys/quota.rb +++ b/lib/vault/api/sys/quota.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/api/sys/seal.rb b/lib/vault/api/sys/seal.rb index fea0906d..72d940da 100644 --- a/lib/vault/api/sys/seal.rb +++ b/lib/vault/api/sys/seal.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "json" diff --git a/lib/vault/api/transform.rb b/lib/vault/api/transform.rb index d9e0180b..9d6abf3c 100644 --- a/lib/vault/api/transform.rb +++ b/lib/vault/api/transform.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative '../client' diff --git a/lib/vault/api/transform/alphabet.rb b/lib/vault/api/transform/alphabet.rb index f61fb796..072737a0 100644 --- a/lib/vault/api/transform/alphabet.rb +++ b/lib/vault/api/transform/alphabet.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative '../../request' diff --git a/lib/vault/api/transform/role.rb b/lib/vault/api/transform/role.rb index 1bedbd5b..6208094e 100644 --- a/lib/vault/api/transform/role.rb +++ b/lib/vault/api/transform/role.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative '../../request' diff --git a/lib/vault/api/transform/template.rb b/lib/vault/api/transform/template.rb index 9de32ad5..416108dd 100644 --- a/lib/vault/api/transform/template.rb +++ b/lib/vault/api/transform/template.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative '../../request' diff --git a/lib/vault/api/transform/transformation.rb b/lib/vault/api/transform/transformation.rb index 2356f533..ebb810cf 100644 --- a/lib/vault/api/transform/transformation.rb +++ b/lib/vault/api/transform/transformation.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative '../../request' diff --git a/lib/vault/client.rb b/lib/vault/client.rb index b43aac97..8b25aa3e 100644 --- a/lib/vault/client.rb +++ b/lib/vault/client.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "cgi" diff --git a/lib/vault/configurable.rb b/lib/vault/configurable.rb index 6dd1828a..44bb838d 100644 --- a/lib/vault/configurable.rb +++ b/lib/vault/configurable.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require_relative "defaults" diff --git a/lib/vault/defaults.rb b/lib/vault/defaults.rb index c128ca50..9f5b945e 100644 --- a/lib/vault/defaults.rb +++ b/lib/vault/defaults.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "pathname" diff --git a/lib/vault/encode.rb b/lib/vault/encode.rb index 59fb354b..36e364d1 100644 --- a/lib/vault/encode.rb +++ b/lib/vault/encode.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/errors.rb b/lib/vault/errors.rb index d4411dbe..46a6cf7d 100644 --- a/lib/vault/errors.rb +++ b/lib/vault/errors.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/request.rb b/lib/vault/request.rb index 733b5d7c..92f21b14 100644 --- a/lib/vault/request.rb +++ b/lib/vault/request.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/response.rb b/lib/vault/response.rb index 668c7c9c..e9dd6f75 100644 --- a/lib/vault/response.rb +++ b/lib/vault/response.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/lib/vault/version.rb b/lib/vault/version.rb index cb89dab3..e2236e45 100644 --- a/lib/vault/version.rb +++ b/lib/vault/version.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module Vault diff --git a/spec/integration/api/approle_spec.rb b/spec/integration/api/approle_spec.rb index ae9bbef8..888da435 100644 --- a/spec/integration/api/approle_spec.rb +++ b/spec/integration/api/approle_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/auth_spec.rb b/spec/integration/api/auth_spec.rb index 39cd0927..f387bb63 100644 --- a/spec/integration/api/auth_spec.rb +++ b/spec/integration/api/auth_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/auth_tls_spec.rb b/spec/integration/api/auth_tls_spec.rb index 44a63afb..9e457bac 100644 --- a/spec/integration/api/auth_tls_spec.rb +++ b/spec/integration/api/auth_tls_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/auth_token_spec.rb b/spec/integration/api/auth_token_spec.rb index 1cddcc92..8b2ed247 100644 --- a/spec/integration/api/auth_token_spec.rb +++ b/spec/integration/api/auth_token_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/help_spec.rb b/spec/integration/api/help_spec.rb index 72f04cb6..6b4f19e3 100644 --- a/spec/integration/api/help_spec.rb +++ b/spec/integration/api/help_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/kv_spec.rb b/spec/integration/api/kv_spec.rb index 89836b5c..77b06a44 100644 --- a/spec/integration/api/kv_spec.rb +++ b/spec/integration/api/kv_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/logical_spec.rb b/spec/integration/api/logical_spec.rb index 1d405929..138917f4 100644 --- a/spec/integration/api/logical_spec.rb +++ b/spec/integration/api/logical_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/audit_spec.rb b/spec/integration/api/sys/audit_spec.rb index b50506a3..d607b61c 100644 --- a/spec/integration/api/sys/audit_spec.rb +++ b/spec/integration/api/sys/audit_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/auth_spec.rb b/spec/integration/api/sys/auth_spec.rb index 26423d01..31b6f19d 100644 --- a/spec/integration/api/sys/auth_spec.rb +++ b/spec/integration/api/sys/auth_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/health_spec.rb b/spec/integration/api/sys/health_spec.rb index 3770f8ef..da012625 100644 --- a/spec/integration/api/sys/health_spec.rb +++ b/spec/integration/api/sys/health_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/init_spec.rb b/spec/integration/api/sys/init_spec.rb index 34c21214..17f8cd69 100644 --- a/spec/integration/api/sys/init_spec.rb +++ b/spec/integration/api/sys/init_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/leader_spec.rb b/spec/integration/api/sys/leader_spec.rb index aceb15f2..87585f45 100644 --- a/spec/integration/api/sys/leader_spec.rb +++ b/spec/integration/api/sys/leader_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/lease_spec.rb b/spec/integration/api/sys/lease_spec.rb index 6a09ffbd..fde76082 100644 --- a/spec/integration/api/sys/lease_spec.rb +++ b/spec/integration/api/sys/lease_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/mount_spec.rb b/spec/integration/api/sys/mount_spec.rb index 4a9a922b..c9d48afb 100644 --- a/spec/integration/api/sys/mount_spec.rb +++ b/spec/integration/api/sys/mount_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/namespace_spec.rb b/spec/integration/api/sys/namespace_spec.rb index 8fe4c8b5..e664bf89 100644 --- a/spec/integration/api/sys/namespace_spec.rb +++ b/spec/integration/api/sys/namespace_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/policy_spec.rb b/spec/integration/api/sys/policy_spec.rb index 90046ac4..e7a2f277 100644 --- a/spec/integration/api/sys/policy_spec.rb +++ b/spec/integration/api/sys/policy_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/quota_spec.rb b/spec/integration/api/sys/quota_spec.rb index 40e1f3d4..03051e55 100644 --- a/spec/integration/api/sys/quota_spec.rb +++ b/spec/integration/api/sys/quota_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/sys/seal_spec.rb b/spec/integration/api/sys/seal_spec.rb index 47b12536..57f98ff1 100644 --- a/spec/integration/api/sys/seal_spec.rb +++ b/spec/integration/api/sys/seal_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/api/transform_spec.rb b/spec/integration/api/transform_spec.rb index 2b021805..cf4e37bc 100644 --- a/spec/integration/api/transform_spec.rb +++ b/spec/integration/api/transform_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require 'spec_helper' diff --git a/spec/integration/client_spec.rb b/spec/integration/client_spec.rb index 0409d342..3fb0fa62 100644 --- a/spec/integration/client_spec.rb +++ b/spec/integration/client_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/integration/redirection_spec.rb b/spec/integration/redirection_spec.rb index 3be21f9e..63c71fbb 100644 --- a/spec/integration/redirection_spec.rb +++ b/spec/integration/redirection_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index e04c96e4..650c144b 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 $LOAD_PATH.unshift File.expand_path("../../lib", __FILE__) diff --git a/spec/support/redirect_server.rb b/spec/support/redirect_server.rb index 01102a0f..eb1e9669 100644 --- a/spec/support/redirect_server.rb +++ b/spec/support/redirect_server.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require 'webrick' diff --git a/spec/support/sample_certificate.rb b/spec/support/sample_certificate.rb index 5cc977b7..409d24bf 100644 --- a/spec/support/sample_certificate.rb +++ b/spec/support/sample_certificate.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 module RSpec diff --git a/spec/support/vault_server.rb b/spec/support/vault_server.rb index fe8f2f48..75a73d8b 100644 --- a/spec/support/vault_server.rb +++ b/spec/support/vault_server.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "open-uri" diff --git a/spec/unit/auth_spec.rb b/spec/unit/auth_spec.rb index 001d3ba6..2c0f4a8c 100644 --- a/spec/unit/auth_spec.rb +++ b/spec/unit/auth_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/unit/client_spec.rb b/spec/unit/client_spec.rb index e3de2d15..b94460dd 100644 --- a/spec/unit/client_spec.rb +++ b/spec/unit/client_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/unit/defaults_spec.rb b/spec/unit/defaults_spec.rb index fcad6188..c25b802f 100644 --- a/spec/unit/defaults_spec.rb +++ b/spec/unit/defaults_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/unit/response_spec.rb b/spec/unit/response_spec.rb index 7a6de414..c0bbb768 100644 --- a/spec/unit/response_spec.rb +++ b/spec/unit/response_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper" diff --git a/spec/unit/vault_spec.rb b/spec/unit/vault_spec.rb index c8665002..2eb43b45 100644 --- a/spec/unit/vault_spec.rb +++ b/spec/unit/vault_spec.rb @@ -1,4 +1,4 @@ -# Copyright (c) HashiCorp, Inc. +# Copyright IBM Corp. 2015, 2025 # SPDX-License-Identifier: MPL-2.0 require "spec_helper"