Current section

Files

Jump to
ark mix.exs
Raw

mix.exs

defmodule Ark.MixProject do
use Mix.Project
@description """
Ark is a collection of small utilities useful for prototyping,
testing, and working with Elixir common patterns.
"""
def project do
[
app: :ark,
version: "0.5.3",
elixir: "~> 1.9",
start_permanent: false,
deps: deps(),
description: @description,
package: package(),
source_url: "https://github.com/lud/ark",
docs: [main: "Ark"]
]
end
def application do
case Mix.env() do
:test -> [extra_applications: [:sasl, :logger]]
_ -> []
end
end
def package() do
[
name: "ark",
licenses: ["MIT"],
links: %{"Github" => "https://github.com/lud/ark"}
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end