-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
47 lines (40 loc) · 1.01 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
Code.ensure_loaded?(Hex) and Hex.start
defmodule Currently.Mixfile do
use Mix.Project
def project do
[ app: :currently,
version: "0.0.4",
elixir: "~> 1.0",
escript: escript,
escript_embed_elixir: true,
description: description,
package: package,
deps: deps ]
end
# Configuration for the OTP application
def application do
[applications: [:httpotion]]
end
# Returns the list of dependencies in the format:
# { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" }
defp deps do
[
{:ibrowse, github: "cmullaparthi/ibrowse", tag: "v4.1.2"},
{:httpotion, "~> 2.1.0"},
{:jsex, "~> 2.0" }
]
end
defp escript do
[main_module: Currently]
end
defp description do
"""
Currently is a tool to display cards currently assigns on Trello
"""
end
defp package do
[ contributors: ["chatgris"],
licenses: ["MIT"],
links: %{ "Github" => "https://github.com/chatgris/currently" }]
end
end