-
Notifications
You must be signed in to change notification settings - Fork 23
/
mix.exs
42 lines (38 loc) · 832 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
defmodule Rambo.MixProject do
use Mix.Project
@version "0.3.4"
@repo_url "https://github.com/jayjun/rambo"
def project do
[
app: :rambo,
version: @version,
elixir: "~> 1.9",
name: "Rambo",
description: "Run your command. Send input. Get output.",
compilers: Mix.compilers() ++ [:rambo],
deps: deps(),
package: [
exclude_patterns: ["priv/target"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url}
],
docs: [
source_ref: @version,
source_url: @repo_url,
main: "Rambo",
api_reference: false,
extra_section: []
]
]
end
def application do
[
extra_applications: []
]
end
defp deps do
[
{:ex_doc, "~> 0.24", only: [:docs], runtime: false}
]
end
end