forked from BlakeWilliams/Elixir-Slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
59 lines (53 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
58
59
defmodule Slack.Mixfile do
use Mix.Project
def project do
[
app: :slack,
version: "0.23.6",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env()),
name: "Slack",
deps: deps(),
docs: docs(),
source_url: "https://github.com/BlakeWilliams/Elixir-Slack",
description: "A Slack Real Time Messaging API client.",
package: package()
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:httpoison, "~> 1.2"},
{:websocket_client, "~> 1.2.4"},
{:jason, "~> 1.1"},
{:ex_doc, "~> 0.19", only: :dev},
{:credo, "~> 0.5", only: [:dev, :test]},
{:plug, "~> 1.6", only: :test},
{:cowboy, "~> 1.0.0", only: :test}
]
end
def docs do
[
{:main, Slack},
{:assets, "guides/assets"},
{:extra_section, "GUIDES"},
{:extras, ["guides/token_generation_instructions.md"]}
]
end
defp package do
%{
maintainers: ["Blake Williams"],
licenses: ["MIT"],
links: %{
Github: "https://github.com/BlakeWilliams/Elixir-Slack",
Documentation: "http://hexdocs.pm/slack/"
}
}
end
end