Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Mune.MixProject do
use Mix.Project
@version "0.2.0"
def project do
[
app: :mune,
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Mune",
docs: docs(),
source_url: "https://github.com/zachdaniel/mune",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"coveralls.circle": :test,
coveralls: :test
]
]
end
def description() do
"A collection of useful functions that aren't found in Elixir's `Enum`."
end
def package() do
[
name: :mune,
maintainers: ["Zachary Daniel"],
licenses: ["MIT License"],
links: %{
"GitHub" => "https://github.com/zachdaniel/mune"
}
]
end
defp docs() do
[
main: "Mune",
extras: [
"README.md"
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:ex_doc, ">= 0.19.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.10", only: :test},
{:inch_ex, github: "rrrene/inch_ex", only: [:dev, :test]},
{:git_ops, "~> 0.3.4"}
]
end
end