├── .editorconfig ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── README.md ├── Rakefile ├── async-postgres.gemspec ├── examples └── rack │ ├── config.ru │ └── schema.rb ├── lib └── async │ ├── postgres.rb │ └── postgres │ ├── connection.rb │ ├── pool.rb │ └── version.rb └── spec ├── async ├── activerecord_spec.rb └── postgres_spec.rb └── spec_helper.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/.rspec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/Rakefile -------------------------------------------------------------------------------- /async-postgres.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/async-postgres.gemspec -------------------------------------------------------------------------------- /examples/rack/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/examples/rack/config.ru -------------------------------------------------------------------------------- /examples/rack/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/examples/rack/schema.rb -------------------------------------------------------------------------------- /lib/async/postgres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/lib/async/postgres.rb -------------------------------------------------------------------------------- /lib/async/postgres/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/lib/async/postgres/connection.rb -------------------------------------------------------------------------------- /lib/async/postgres/pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/lib/async/postgres/pool.rb -------------------------------------------------------------------------------- /lib/async/postgres/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/lib/async/postgres/version.rb -------------------------------------------------------------------------------- /spec/async/activerecord_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/spec/async/activerecord_spec.rb -------------------------------------------------------------------------------- /spec/async/postgres_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/spec/async/postgres_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/socketry/async-postgres/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------