rebar3 and hex.
This commit is contained in:
parent
4f19dcf5ec
commit
5387ec8f02
6 changed files with 10 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@
|
|||
deps/
|
||||
ebin/
|
||||
.eunit/
|
||||
_build
|
||||
|
|
6
Makefile
6
Makefile
|
@ -1,13 +1,13 @@
|
|||
all: get-deps compile
|
||||
|
||||
get-deps:
|
||||
./rebar get-deps
|
||||
./rebar3 get-deps
|
||||
|
||||
compile:
|
||||
./rebar compile
|
||||
./rebar3 compile
|
||||
|
||||
test: get-deps compile
|
||||
./rebar skip_deps=true eunit
|
||||
./rebar3 skip_deps=true eunit
|
||||
|
||||
run:
|
||||
erl -pa ebin/ deps/*/ebin/ -eval "application:start(qdate)"
|
||||
|
|
BIN
rebar
vendored
BIN
rebar
vendored
Binary file not shown.
|
@ -4,6 +4,6 @@
|
|||
{cover_enabled, true}.
|
||||
|
||||
{deps, [
|
||||
{erlware_commons, ".*", {git, "git://github.com/erlware/erlware_commons.git", {branch, master}}},
|
||||
{erlang_localtime, ".*", {git, "git://github.com/choptastic/erlang_localtime.git", {branch, master}}}
|
||||
erlware_commons,
|
||||
erlang_localtime
|
||||
]}.
|
||||
|
|
BIN
rebar3
Executable file
BIN
rebar3
Executable file
Binary file not shown.
|
@ -8,5 +8,8 @@
|
|||
stdlib
|
||||
]},
|
||||
{modules, [qdate, qdate_srv]},
|
||||
{env, []}
|
||||
{env, []},
|
||||
{contributors, ["Jesse Gumm"]},
|
||||
{licenses, ["MIT"]},
|
||||
{links, [{"Github", "https://github.com/choptastic/qdate"}]}
|
||||
]}.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue