forked from ChicagoBoss/ChicagoBoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
30 lines (28 loc) · 1.56 KB
/
rebar.config
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
{erl_opts, [debug_info]}.
{template_dir, "."}.
{deps, [
{lager, ".*", {git, "git://github.com/basho/lager.git", {tag, "1.2.2"}}},
{boss_db, ".*", {git, "git://github.com/evanmiller/boss_db.git", "HEAD"}},
{tinymq, ".*", {git, "git://github.com/evanmiller/tinymq.git", "HEAD"}},
{tiny_pq, ".*", {git, "git://github.com/evanmiller/tiny_pq.git", "HEAD"}},
{erlydtl, ".*", {git, "git://github.com/evanmiller/erlydtl.git", "HEAD"}},
{jaderl, ".*", {git, "git://github.com/evanmiller/jaderl.git", "HEAD"}},
%% Uncomment the follwing line if you have Erlang R15 and want Elixir support
% {elixir, ".*", {git, "git://github.com/elixir-lang/elixir.git", {tag, "v0.9.3"}}},
%% Then copy priv/web_controller.ex to src/ in this directory and recompile
%% See README_ELIXIR for more details.
{lfe, ".*", {git, "git://github.com/rvirding/lfe.git", "fb7c96eb17"}},
{gen_smtp, ".*", {git, "git://github.com/Vagabond/gen_smtp.git", "0558786233"}},
{mochiweb, ".*", {git, "git://github.com/mochi/mochiweb.git", {tag, "v2.4.2"}}},
{simple_bridge, ".*", {git, "git://github.com/nitrogen/simple_bridge.git", "f12c2a571c"}},
{poolboy, ".*", {git, "git://github.com/devinus/poolboy.git", {tag, "1.0.0"}}},
{cowboy, ".*", {git, "git://github.com/extend/cowboy.git", {tag, "0.8.2"}}},
{mochicow, ".*", {git, "git://github.com/evanmiller/mochicow.git", "r16-compat"}}
]}.
{erlydtl_opts, [
{doc_root, "src/boss"},
{out_dir, "ebin"},
{source_ext, ".dtl"},
{module_ext, ""}
]}.
{lib_dirs, ["deps/elixir/lib"]}.