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

3
.gitignore vendored
View file

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

View file

@ -1,8 +1,8 @@
all: include/tz_index.hrl all: include/tz_index.hrl
./rebar compile ./rebar3 compile
check: check:
./rebar eunit ./rebar3 eunit
include/tz_index.hrl: src/ibuild.erl include/tz_database.hrl 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 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', {application, 'erlang_localtime',
[ [
{description, ""}, {description, "Erlang library for conversion from one local time to another"},
{applications, [kernel, stdlib]},
{vsn, "1.0"}, {vsn, "1.0"},
{applications, [kernel, stdlib]}, {applications, [kernel, stdlib]},
{modules, []}, {modules, []},
{registered, []}, {registered, []},
{env, []}, {env, []},
{applications, []} {licenses, ["BSD"]},
{links, [{"Github", "https://github.com/choptastic/erlang_localtime"}]}
]}. ]}.