Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.09 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.09 KB

Build Status

Fernet.Ecto

Fernet.Ecto defines Ecto.Type-based fields that automatically Fernet-encrypts and decrypts values stored and loaded from a repository. The API documentation has more details.

Installation

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

    def deps do
      [{:fernet_ecto, "~> 1.3.0"}]
    end
  2. Run mix deps.get to fetch and install the package.

  3. Ensure fernet_ecto is started before your application:

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

Release

  • Bump the version here in the README.md and in mix.exs.
  • Run git tag v$VERSION to tag the version that was just published.
  • Run git push --tags origin master to push tags to Github.
  • Run mix hex.publish to publish the new version.

License

© 2016 Jamshed Kakar [email protected]. See LICENSE.md file for details.