-
Notifications
You must be signed in to change notification settings - Fork 155
/
mix.exs
58 lines (52 loc) · 1.3 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
defmodule Tentacat.Mixfile do
use Mix.Project
@source_url "https://github.com/edgurgel/tentacat"
@version "2.4.0"
def project do
[
app: :tentacat,
version: @version,
elixir: "~> 1.16",
name: "Tentacat",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test],
package: package(),
deps: deps(),
docs: docs()
]
end
def application do
[]
end
defp deps do
[
{:httpoison, "~> 2.0"},
{:jason, "~> 1.2"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:inch_ex, "~> 2.0", only: :dev},
{:excoveralls, "~> 0.5", only: :test},
{:exvcr, "~> 0.10", only: :test},
{:meck, "~> 0.9", only: :test}
]
end
defp package do
[
description: "Simple Elixir wrapper for the GitHub API",
maintainers: ["Eduardo Gurgel Pinho", "Jamie Winsor", "Hugo Duksis"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
extras: [
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"],
"guides/getting_started.md": [title: "Getting Started"]
],
main: "readme",
source_url: @source_url,
formatters: ["html"]
]
end
end