-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmix.exs
More file actions
37 lines (32 loc) · 663 Bytes
/
Copy pathmix.exs
File metadata and controls
37 lines (32 loc) · 663 Bytes
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
31
32
33
34
35
36
37
defmodule Apex.Mixfile do
use Mix.Project
def project do
[ app: :apex,
version: "1.2.1",
elixir: "~> 1.3 or ~> 1.4 or ~> 1.5 or ~> 1.7",
build_per_environment: false,
description: description(),
package: package(),
deps: deps()]
end
def application do
[]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: [:dev, :test]}
]
end
def description do
"Elixir clone of Ruby's awesome_print gem"
end
def package do
[
maintainers: ["Bjoern Rochel"],
licenses: ["The MIT License"],
links: %{
"GitHub" => "https://github.com/bjro/apex"
}
]
end
end