-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (29 loc) · 795 Bytes
/
Copy pathmix.exs
File metadata and controls
35 lines (29 loc) · 795 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
defmodule SpawnDir.Mixfile do
use Mix.Project
@state_dir "var"
@test_dir Path.join(@state_dir, "test")
def project do
[app: :spawndir,
version: "0.1.1",
elixir: "~> 1.0.0",
deps: deps,
escript: escript,
description: File.read!("README.md"),
package: [licenses: ["The BSD 3-Clause License"],
contributors: ["Thomas Moulia <jtmoulia@pocketknife.io>"],
links: %{"github" => "https://github.com/jtmoulia/spawndir"}]
]
end
def application do
[applications: [],
mod: {SpawnDir, []},
env: [test_dir: @test_dir]]
end
defp deps do
[#{:exactor, git: "https://github.com/sasa1977/exactor.git", tag: "0.5.0"},
{:exrm, "~> 0.10.3"}]
end
defp escript do
[main_module: SpawnDir]
end
end