Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Shoehorn.Mixfile do
use Mix.Project
def project do
[app: :shoehorn,
version: "0.2.0",
elixir: "~> 1.4",
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()]
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, "~> 1.0", runtime: false},
{:ex_doc, "~> 0.11", only: :dev}]
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