-
Notifications
You must be signed in to change notification settings - Fork 33
/
mix.exs
30 lines (27 loc) · 935 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
defmodule Crutches.Mixfile do
use Mix.Project
def project do
[app: :crutches,
version: "2.0.0",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: "An Elixir toolbelt freely inspired from Ruby's ActiveSupport",
package: [maintainers: ["Michael Wood", "Kash Nouroozi", "Maurizio Del Corno",
"nawns", "Laurens Duijvesteijn", "Joel Meador",
"Sonny Scroggin", "Louis Pilfold", "Alexis Mas",
"Bryan Enders"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mykewould/crutches"}]]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:inch_ex, only: :docs},
{:ex_doc, only: :docs},
{:earmark, only: :docs},
{:benchfella, only: :dev}]
end
end