ExCoder/mix.exs
2013-08-06 22:21:23 +03:00

21 lines
401 B
Elixir

defmodule Excoder.Mixfile do
use Mix.Project
def project do
[ app: :excoder,
version: "0.0.1",
elixir: "~> 0.10.1-dev",
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