Build Status Coverage Status

RePG2

A translation of the original Erlang pg2 implementation to Elixir for educational purposes.

Do not use this package in production. Instead, use the :pg2 module from the Erlang stdlib.

Installation

If available in Hex, the package can be installed as:

  1. Add repg2 to your list of dependencies in mix.exs:

    def deps do
      [{:repg2, "~> 0.0.2"}]
    end
  2. Ensure repg2 is started before your application:

    def application do
      [applications: [:repg2]]
    end