Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Shoehorn.Mixfile do
use Mix.Project
def project do
[
app: :shoehorn,
version: "0.5.0",
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
description: description(),
package: package(),
source_url: "https://github.com/nerves-project/shoehorn",
deps: deps(),
docs: docs()
]
end
def application do
[extra_applications: [:crypto], mod: {Shoehorn, []}]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:distillery, "~> 2.0", runtime: false},
{:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.18", only: [:dev, :test], runtime: false}
]
end
defp docs do
[
main: "readme",
extras: [
"README.md"
]
]
end
defp description do
"""
Get your boot on.
"""
end
defp package do
[
maintainers: ["Justin Schneck"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/nerves-project/shoehorn"}
]
end
end