Skip to content

Commit be6e05c

Browse files
committed
move to rebar, with dependencies
This is probably broken, I haven't even made a release template for rebar yet
1 parent c0d5d2f commit be6e05c

27 files changed

+17
-8894
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
*.boot
22
*.script
3-
ebin/*.beam
43
MnesiaCore*
54
erl_crash.dump
65
log
@@ -15,3 +14,5 @@ web_log
1514
drink.config
1615
drink.rel
1716
.DS_Store
17+
deps
18+
ebin

Emakefile

-6
This file was deleted.

rebar.config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{erl_opts, [{i, "/usr/local/lib/yaws/include/"}, debug_info]}.
2+
3+
{deps, [{ewebauth, "1", {git, "http://github.com/danw/ewebauth.git", "HEAD"}},
4+
{eldap, "3.0", {git, "http://github.com/danw/eldap.git", "HEAD"}},
5+
{epam, "1", {git, "http://github.com/danw/epam.git", "HEAD"}},
6+
{erlang_mysql, "4", {git, "http://github.com/danw/erlang_mysql.git", "HEAD"}}]}.

ebin/drink.app src/drink.app.src

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
{application, drink,
22
[{description, "Drink Server"},
33
{vsn, "1.0"},
4-
{modules, [drink_app, drink_sup, drink_machines_sup, drink_machine,
5-
drink_machine_comm, drink_web, gen_listener, sunday_server, user_auth]},
4+
{modules, [drink_app,
5+
drink_sup,
6+
drink_machines_sup,
7+
drink_machine,
8+
drink_machine_comm,
9+
drink_web,
10+
gen_listener,
11+
sunday_server,
12+
user_auth]},
613
{registered,[drink_sup, drink_machines_sup, drink_machine_comm_listener, user_auth, sunday_server_listener]},
714
{applications, [kernel, stdlib, sasl, ssl, yaws]},
815
{mod, {drink_app, []}},

src/eldap/COPYING

-343
This file was deleted.

src/eldap/ELDAPv3.asn

-291
This file was deleted.

src/eldap/ELDAPv3.asn1db

-28.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)