├── .editorconfig ├── .github ├── copilot-instructions.md └── workflows │ ├── documentation-coverage.yaml │ ├── documentation.yaml │ ├── rubocop.yaml │ ├── test-coverage.yaml │ ├── test-external.yaml │ └── test.yaml ├── .gitignore ├── .mailmap ├── .rubocop.yml ├── bake.rb ├── config └── sus.rb ├── context ├── getting-started.md └── index.yaml ├── db-postgres.gemspec ├── gems.rb ├── guides ├── getting-started │ └── readme.md └── links.yaml ├── lib └── db │ ├── postgres.rb │ └── postgres │ ├── adapter.rb │ ├── connection.rb │ ├── error.rb │ ├── native.rb │ ├── native │ ├── connection.rb │ ├── field.rb │ ├── result.rb │ └── types.rb │ └── version.rb ├── license.md ├── readme.md ├── release.cert ├── releases.md └── test └── db └── postgres ├── connection.rb └── connection └── date_time.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/documentation-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.github/workflows/documentation-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.github/workflows/rubocop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.github/workflows/rubocop.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/test-external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.github/workflows/test-external.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.mailmap -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /bake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/bake.rb -------------------------------------------------------------------------------- /config/sus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/config/sus.rb -------------------------------------------------------------------------------- /context/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/context/getting-started.md -------------------------------------------------------------------------------- /context/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/context/index.yaml -------------------------------------------------------------------------------- /db-postgres.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/db-postgres.gemspec -------------------------------------------------------------------------------- /gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/gems.rb -------------------------------------------------------------------------------- /guides/getting-started/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/guides/getting-started/readme.md -------------------------------------------------------------------------------- /guides/links.yaml: -------------------------------------------------------------------------------- 1 | getting-started: 2 | order: 0 3 | -------------------------------------------------------------------------------- /lib/db/postgres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres.rb -------------------------------------------------------------------------------- /lib/db/postgres/adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/adapter.rb -------------------------------------------------------------------------------- /lib/db/postgres/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/connection.rb -------------------------------------------------------------------------------- /lib/db/postgres/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/error.rb -------------------------------------------------------------------------------- /lib/db/postgres/native.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/native.rb -------------------------------------------------------------------------------- /lib/db/postgres/native/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/native/connection.rb -------------------------------------------------------------------------------- /lib/db/postgres/native/field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/native/field.rb -------------------------------------------------------------------------------- /lib/db/postgres/native/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/native/result.rb -------------------------------------------------------------------------------- /lib/db/postgres/native/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/native/types.rb -------------------------------------------------------------------------------- /lib/db/postgres/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/lib/db/postgres/version.rb -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/license.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/readme.md -------------------------------------------------------------------------------- /release.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/release.cert -------------------------------------------------------------------------------- /releases.md: -------------------------------------------------------------------------------- 1 | # Releases 2 | 3 | ## v0.9.0 4 | 5 | - Add support for `DB::Features`. 6 | -------------------------------------------------------------------------------- /test/db/postgres/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/test/db/postgres/connection.rb -------------------------------------------------------------------------------- /test/db/postgres/connection/date_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/db-postgres/HEAD/test/db/postgres/connection/date_time.rb --------------------------------------------------------------------------------