From 525fae1ee6f61dfd2171c32cdc8051697a4f6a1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Wed, 5 Jun 2013 21:42:47 +0200 Subject: [PATCH] Don't forget mix.exs --- mix.exs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 mix.exs diff --git a/mix.exs b/mix.exs new file mode 100644 index 0000000..6be5d85 --- /dev/null +++ b/mix.exs @@ -0,0 +1,20 @@ +defmodule Geef.Mixfile do + use Mix.Project + + def project do + [ app: :geef, + version: "0.0.1", + deps: deps ] + end + + # Configuration for the OTP application + def application do + [] + end + + # Returns the list of dependencies in the format: + # { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" } + defp deps do + [] + end +end