summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorPaul Schoenfelder <paulschoenfelder@gmail.com>2013-12-05 10:31:28 -0600
committerPaul Schoenfelder <paulschoenfelder@gmail.com>2013-12-05 10:31:28 -0600
commita1fa95d8b039e98dbfd2b8f893633c34fada784b (patch)
treee8c4e5a25737a944a33066522e9bc6444d8c1923 /mix.exs
Initial commit
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs24
1 files changed, 24 insertions, 0 deletions
diff --git a/mix.exs b/mix.exs
new file mode 100644
index 0000000..830a13a
--- /dev/null
+++ b/mix.exs
@@ -0,0 +1,24 @@
+defmodule ExIrc.Mixfile do
+ use Mix.Project
+
+ def project do
+ [ app: :exirc,
+ version: "0.0.1",
+ elixir: "~> 0.11.2",
+ deps: deps ]
+ end
+
+ # Configuration for the OTP application
+ def application do
+ []
+ end
+
+ # Returns the list of dependencies in the format:
+ # { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" }
+ #
+ # To specify particular versions, regardless of the tag, do:
+ # { :barbat, "~> 0.1", github: "elixir-lang/barbat.git" }
+ defp deps do
+ []
+ end
+end