Rebar3 / hex compatiblility.

Conflicts:
	.gitignore
	src/erlang_localtime.app.src
This commit is contained in:
Heinz N. Gies 2015-07-25 20:16:51 +02:00 committed by Jesse Gumm
parent acc01b92f0
commit e561089118
6 changed files with 8 additions and 6 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
ebin/
_build/

View file

@ -1,8 +1,8 @@
all: include/tz_index.hrl
./rebar compile
./rebar3 compile
check:
./rebar eunit
./rebar3 eunit
include/tz_index.hrl: src/ibuild.erl include/tz_database.hrl
cd include && ln -s ../src/ibuild.erl && escript ibuild.erl; EV=$$?; rm ibuild.erl; exit $$EV

BIN
rebar vendored

Binary file not shown.

1
rebar.lock Normal file
View file

@ -0,0 +1 @@
[].

BIN
rebar3 Executable file

Binary file not shown.

View file

@ -1,11 +1,11 @@
{application, 'erlang_localtime',
[
{description, ""},
{applications, [kernel, stdlib]},
{description, "Erlang library for conversion from one local time to another"},
{vsn, "1.0"},
{applications, [kernel, stdlib]},
{modules, []},
{registered, []},
{env, []},
{applications, []}
{licenses, ["BSD"]},
{links, [{"Github", "https://github.com/choptastic/erlang_localtime"}]}
]}.