-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
41 lines (37 loc) · 789 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
31
32
33
34
35
36
37
38
39
40
41
defmodule ExSpec.Mixfile do
use Mix.Project
def project do
[
app: :ex_spec,
version: "2.0.1",
elixir: "~> 1.3",
package: package(),
description: "BDD-like syntax for ExUnit",
source_url: "https://github.com/drewolson/ex_spec",
homepage_url: "https://hex.pm/packages/ex_spec",
deps: deps(),
docs: [
main: "readme",
extras: [
"README.md"
]
]
]
end
def application do
[applications: []]
end
defp deps do
[
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.18.0", only: :dev}
]
end
defp package do
[
maintainers: ["Drew Olson"],
licenses: ["MIT"],
links: %{"github" => "https://github.com/drewolson/ex_spec"}
]
end
end