├── .github └── workflows │ └── CI.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── attr_encrypted.gemspec ├── checksum ├── attr_encrypted-3.0.0.gem.sha256 ├── attr_encrypted-3.0.0.gem.sha512 ├── attr_encrypted-3.0.1.gem.sha256 ├── attr_encrypted-3.0.1.gem.sha512 ├── attr_encrypted-3.0.2.gem.sha256 ├── attr_encrypted-3.0.2.gem.sha512 ├── attr_encrypted-3.0.3.gem.sha256 ├── attr_encrypted-3.0.3.gem.sha512 ├── attr_encrypted-3.1.0.gem.sha256 └── attr_encrypted-3.1.0.gem.sha512 ├── lib ├── attr_encrypted.rb └── attr_encrypted │ ├── adapters │ ├── active_record.rb │ └── sequel.rb │ └── version.rb └── test ├── active_record_test.rb ├── attr_encrypted_test.rb ├── compatibility_test.rb ├── legacy_active_record_test.rb ├── legacy_attr_encrypted_test.rb ├── legacy_compatibility_test.rb ├── legacy_sequel_test.rb ├── run.sh ├── sequel_test.rb └── test_helper.rb /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/Rakefile -------------------------------------------------------------------------------- /attr_encrypted.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/attr_encrypted.gemspec -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.0.0.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.0.0.gem.sha256 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.0.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.0.0.gem.sha512 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.0.1.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.0.1.gem.sha256 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.0.1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.0.1.gem.sha512 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.0.2.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.0.2.gem.sha256 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.0.2.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.0.2.gem.sha512 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.0.3.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.0.3.gem.sha256 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.0.3.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.0.3.gem.sha512 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.1.0.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.1.0.gem.sha256 -------------------------------------------------------------------------------- /checksum/attr_encrypted-3.1.0.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/checksum/attr_encrypted-3.1.0.gem.sha512 -------------------------------------------------------------------------------- /lib/attr_encrypted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/lib/attr_encrypted.rb -------------------------------------------------------------------------------- /lib/attr_encrypted/adapters/active_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/lib/attr_encrypted/adapters/active_record.rb -------------------------------------------------------------------------------- /lib/attr_encrypted/adapters/sequel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/lib/attr_encrypted/adapters/sequel.rb -------------------------------------------------------------------------------- /lib/attr_encrypted/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/lib/attr_encrypted/version.rb -------------------------------------------------------------------------------- /test/active_record_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/active_record_test.rb -------------------------------------------------------------------------------- /test/attr_encrypted_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/attr_encrypted_test.rb -------------------------------------------------------------------------------- /test/compatibility_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/compatibility_test.rb -------------------------------------------------------------------------------- /test/legacy_active_record_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/legacy_active_record_test.rb -------------------------------------------------------------------------------- /test/legacy_attr_encrypted_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/legacy_attr_encrypted_test.rb -------------------------------------------------------------------------------- /test/legacy_compatibility_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/legacy_compatibility_test.rb -------------------------------------------------------------------------------- /test/legacy_sequel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/legacy_sequel_test.rb -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/sequel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/sequel_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attr-encrypted/attr_encrypted/HEAD/test/test_helper.rb --------------------------------------------------------------------------------