ExTrello

A library for interfacing with the Trello API.

Heavily influenced by https://github.com/parroty/extwitter with some stuff straight ripped out of it.

TODO:

Installation

  1. Add ex_trello to your list of dependencies in mix.exs:
```elixir
def deps do
  [
    {:ex_trello, "~> 0.4.1"}
  ]
end
```
  1. Ensure ex_trello is started before your application: (Technically not necessary right now, but will be soon(tm).)
```elixir
def application do
  [applications: [:ex_trello]]
end
```