aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorMentor Ágil <mentoragil@gmail.com>2015-05-12 22:11:49 -0300
committerMentor Ágil <mentoragil@gmail.com>2015-05-12 22:11:49 -0300
commit765438c4c2c300f84364b978a0b199a0e69c4e80 (patch)
tree8641ea4d3910a28fa8c702ee057251ce2d751abe /mix.exs
downloadmailchimp-765438c4c2c300f84364b978a0b199a0e69c4e80.tar.gz
mailchimp-765438c4c2c300f84364b978a0b199a0e69c4e80.tar.xz
first commit
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs19
1 files changed, 19 insertions, 0 deletions
diff --git a/mix.exs b/mix.exs
new file mode 100644
index 0000000..7111fc9
--- /dev/null
+++ b/mix.exs
@@ -0,0 +1,19 @@
+defmodule Mailchimp.Mixfile do
+ use Mix.Project
+
+ def project do
+ [app: :mailchimp,
+ version: "0.0.1",
+ elixir: "~> 1.0",
+ deps: deps]
+ end
+
+ def application do
+ [applications: [:logger, :httpoison]]
+ end
+
+ defp deps do
+ [{:httpoison, "~> 0.6"},
+ {:poison, "~> 1.4.0"}]
+ end
+end