forked from edgurgel/tentacat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
57 lines (51 loc) · 1.28 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
defmodule Tentacat.Mixfile do
use Mix.Project
@description """
Simple Elixir wrapper for the GitHub API
"""
def project do
[
app: :tentacat,
version: "1.5.0",
elixir: "~> 1.6",
name: "Tentacat",
description: @description,
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test],
deps: deps(),
# Docs
name: "Tentacat",
source_url: "https://github.com/edgurgel/tentacat",
docs: [
main: "README",
extras: [
"README.md",
"guides/Getting Started.md"
]
]
]
end
def application do
[applications: [:httpoison, :exjsx]]
end
defp deps do
[
{:httpoison, "~> 1.3.0"},
{:exjsx, "~> 4.0"},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.19", only: :dev},
{:inch_ex, "~> 0.5", only: :dev},
{:excoveralls, "~> 0.5", only: :test},
{:exvcr, "~> 0.10.3", only: :test},
{:meck, "~> 0.8.9", only: :test}
]
end
defp package do
[
maintainers: ["Eduardo Gurgel Pinho", "Jamie Winsor", "Hugo Duksis"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/edgurgel/tentacat"}
]
end
end