-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmix.exs
44 lines (37 loc) · 1013 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
42
43
44
defmodule Comredis.Mixfile do
use Mix.Project
@description """
Comredis is your comrade for Redis command generation in Elixir.
"""
def project do
[app: :comredis,
version: "1.0.1",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
name: "Comredis",
source_url: "https://github.com/iurifq/comredis",
description: @description,
package: package,
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:poison, ">= 1.0.0"},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.11", only: :dev},
{:redix, ">= 0.0.0", only: :test},
{:exredis, ">= 0.0.0", only: :test},
{:excheck, "~> 0.3", only: :test},
{:triq, github: "krestenkrab/triq", only: :test},
]
end
defp package do
[ maintainers: ["Iuri Fernandes Queiroz"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/iurifq/comredis"} ]
end
end