money.ex

Simple lightweight library for money representation in Elixir.

Not yet recommended for use in production while major version is 0. Currently dog-fooding the library in a personal project.

Installation

Add money_ex to your list of dependencies in mix.exs, then run mix deps.get.

From Hex:

def deps do
  [
    {:money_ex, "~> 0.2.0"}
  ]
end

From GitHub:

def deps do
  [
    {:money_ex, github: "dideler/money.ex"}
  ]
end

From Git:

def deps do
  [
    {:money_ex, git: "https://github.com/dideler/money.ex.git", tag: "0.2.0"}
  ]
end

The docs can be found at https://hexdocs.pm/money_ex.

Goals

Anti-goals

Roadmap