-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
36 lines (32 loc) · 748 Bytes
/
mix.exs
File metadata and controls
36 lines (32 loc) · 748 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
36
defmodule SlimeReference.Mixfile do
use Mix.Project
def project do
[
app: :slime_reference,
version: "0.0.1",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
test_paths: ["_test"],
elixirc_paths: elixirc_paths(Mix.env),
]
end
def application do
[applications: [:yamerl]]
end
defp elixirc_paths(:test), do: ["_test/support"]
defp elixirc_paths(_), do: []
defp deps do
[
# Slime!
{:slime, "~> 0.0"},
# Automatic test runner
{:mix_test_watch, only: :dev},
# Style linter
{:dogma, only: ~w(dev test)a},
# yml parser
{:yamerl, github: "yakaz/yamerl"}
]
end
end