From 3c2680afe99f7b21adaf24c7c93ed89bce64ba52 Mon Sep 17 00:00:00 2001 From: Jean Duarte Date: Tue, 16 Feb 2016 15:59:04 -0200 Subject: refatoring --- .hex | 2 +- README.md | 21 ++++++++++++++++----- mix.exs | 2 +- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/.hex b/.hex index 3c1a9d7..9d77bc6 100644 --- a/.hex +++ b/.hex @@ -1 +1 @@ -mailchimp,0.0.4 +mailchimp,0.0.5 diff --git a/README.md b/README.md index b07b0d6..83f14ae 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ First, add MailChimp lib to your `mix.exs` dependencies: ```elixir def deps do - [{:mailchimp, "~> 0.0.2"}] + [{:mailchimp, "~> 0.0.5"}] end ``` @@ -21,7 +21,7 @@ def application do end ``` -## API +## Usage Put your API key in your *config.exs* file: @@ -29,8 +29,19 @@ Put your API key in your *config.exs* file: config :mailchimp, apikey: "your api-us10" ``` -For now Mailchimp only supports HTTP Basic Auth. -## Documentation +Start a new process: -TODO + Mailchimp.start_link + +### Getting Account Details + + Mailchimp.Account.get() + +### Getting All Lists + + TODO + +### Adding a Member to a List + + TODO diff --git a/mix.exs b/mix.exs index 52edb5b..e6a521a 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Mailchimp.Mixfile do def project do [app: :mailchimp, - version: "0.0.4", + version: "0.0.5", elixir: "~> 1.0", description: description, package: package, -- cgit v1.2.1