Nurina/mix.exs

22 lines
397 B
Elixir
Raw Normal View History

2015-02-14 18:57:07 +00:00
defmodule Nurina.Mixfile do
use Mix.Project
def project do
[ app: :nurina,
version: "0.1.0",
elixir: "~> 1.0.3",
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