├── .github ├── FUNDING.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bin ├── console └── setup ├── checksums ├── dry-credentials-0.1.0.gem.sha512 ├── dry-credentials-0.2.0.gem.sha512 ├── dry-credentials-0.2.1.gem.sha512 ├── dry-credentials-0.3.0.gem.sha512 ├── dry-credentials-0.3.1.gem.sha512 ├── dry-credentials-0.4.0.gem.sha512 └── dry-credentials-0.5.0.gem.sha512 ├── dry-credentials.gemspec ├── gems.rb ├── guardfile.rb ├── lib ├── dry-credentials.rb └── dry │ ├── credentials.rb │ └── credentials │ ├── encryptor.rb │ ├── errors.rb │ ├── extension.rb │ ├── helpers.rb │ ├── settings.rb │ ├── version.rb │ └── yaml.rb ├── rakefile.rb ├── sig └── dry │ └── credentials.rbs └── spec ├── fixtures ├── decrypted │ ├── invalid.yml │ ├── test.yml │ └── unsafe.yml └── encrypted │ └── test.yml.enc ├── lib └── dry │ ├── credentials │ ├── encryptor_spec.rb │ ├── extension_spec.rb │ ├── helpers_spec.rb │ ├── settings_spec.rb │ ├── version_spec.rb │ └── yaml_spec.rb │ └── credentials_spec.rb └── spec_helper.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: svoop 2 | custom: "https://donorbox.org/bitcetera" 3 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ruby 2 | gems.locked 3 | pkg/* 4 | *.gem 5 | .bundle 6 | .yardoc 7 | 8 | # Mac 9 | .DS_Store 10 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/bin/setup -------------------------------------------------------------------------------- /checksums/dry-credentials-0.1.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/checksums/dry-credentials-0.1.0.gem.sha512 -------------------------------------------------------------------------------- /checksums/dry-credentials-0.2.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/checksums/dry-credentials-0.2.0.gem.sha512 -------------------------------------------------------------------------------- /checksums/dry-credentials-0.2.1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/checksums/dry-credentials-0.2.1.gem.sha512 -------------------------------------------------------------------------------- /checksums/dry-credentials-0.3.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/checksums/dry-credentials-0.3.0.gem.sha512 -------------------------------------------------------------------------------- /checksums/dry-credentials-0.3.1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/checksums/dry-credentials-0.3.1.gem.sha512 -------------------------------------------------------------------------------- /checksums/dry-credentials-0.4.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/checksums/dry-credentials-0.4.0.gem.sha512 -------------------------------------------------------------------------------- /checksums/dry-credentials-0.5.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/checksums/dry-credentials-0.5.0.gem.sha512 -------------------------------------------------------------------------------- /dry-credentials.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/dry-credentials.gemspec -------------------------------------------------------------------------------- /gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/gems.rb -------------------------------------------------------------------------------- /guardfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/guardfile.rb -------------------------------------------------------------------------------- /lib/dry-credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry-credentials.rb -------------------------------------------------------------------------------- /lib/dry/credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry/credentials.rb -------------------------------------------------------------------------------- /lib/dry/credentials/encryptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry/credentials/encryptor.rb -------------------------------------------------------------------------------- /lib/dry/credentials/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry/credentials/errors.rb -------------------------------------------------------------------------------- /lib/dry/credentials/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry/credentials/extension.rb -------------------------------------------------------------------------------- /lib/dry/credentials/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry/credentials/helpers.rb -------------------------------------------------------------------------------- /lib/dry/credentials/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry/credentials/settings.rb -------------------------------------------------------------------------------- /lib/dry/credentials/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry/credentials/version.rb -------------------------------------------------------------------------------- /lib/dry/credentials/yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/lib/dry/credentials/yaml.rb -------------------------------------------------------------------------------- /rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/rakefile.rb -------------------------------------------------------------------------------- /sig/dry/credentials.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/sig/dry/credentials.rbs -------------------------------------------------------------------------------- /spec/fixtures/decrypted/invalid.yml: -------------------------------------------------------------------------------- 1 | no_good 2 | -------------------------------------------------------------------------------- /spec/fixtures/decrypted/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/fixtures/decrypted/test.yml -------------------------------------------------------------------------------- /spec/fixtures/decrypted/unsafe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/fixtures/decrypted/unsafe.yml -------------------------------------------------------------------------------- /spec/fixtures/encrypted/test.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/fixtures/encrypted/test.yml.enc -------------------------------------------------------------------------------- /spec/lib/dry/credentials/encryptor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/lib/dry/credentials/encryptor_spec.rb -------------------------------------------------------------------------------- /spec/lib/dry/credentials/extension_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/lib/dry/credentials/extension_spec.rb -------------------------------------------------------------------------------- /spec/lib/dry/credentials/helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/lib/dry/credentials/helpers_spec.rb -------------------------------------------------------------------------------- /spec/lib/dry/credentials/settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/lib/dry/credentials/settings_spec.rb -------------------------------------------------------------------------------- /spec/lib/dry/credentials/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/lib/dry/credentials/version_spec.rb -------------------------------------------------------------------------------- /spec/lib/dry/credentials/yaml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/lib/dry/credentials/yaml_spec.rb -------------------------------------------------------------------------------- /spec/lib/dry/credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/lib/dry/credentials_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svoop/dry-credentials/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------