datamapper/dm-mapper

View on GitHub
lib/rom/support/axiom/adapter/postgres.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: utf-8

require 'do_postgres'

require 'rom/support/axiom/adapter'
require 'rom/support/axiom/adapter/data_objects'

module Axiom
  module Adapter

    # A Axiom adapter for postgres
    #
    class Postgres < DataObjects

      uri_scheme :postgres

    end # class Postgres
  end # module Adapter
end # module Axiom