forked from iurifq/comredis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
41 lines (36 loc) · 967 Bytes
/
mix.exs
File metadata and controls
41 lines (36 loc) · 967 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
38
39
40
41
defmodule Comtile38.Mixfile do
use Mix.Project
@description """
comtile38 is your comrade for Tile38 command generation in Elixir.
"""
def project do
[app: :comtile38,
version: "0.0.3",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
name: "Comtile38",
source_url: "https://github.com/bt-maps/comtile38",
description: @description,
package: package,
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:poison, "~> 5.0"},
{:earmark, "~> 0.2.1", only: :dev},
{:ex_doc, "~> 0.28.3", only: :dev},
{:redix, "~> 1.1", only: :test},
{:excheck, "~> 0.3", only: :test},
{:triq, github: "krestenkrab/triq", only: :test},
]
end
defp package do
[ maintainers: ["Brent Tucker"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/bt-maps/comtile38"} ]
end
end