Update rebar.config back to choptastic/erlang_localtime

*temporary* until a commit is merged
This commit is contained in:
Jesse Gumm 2015-11-05 11:31:38 -06:00
parent 8427b7bdc6
commit a504a6adfc
4 changed files with 9 additions and 4 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@ deps/
ebin/ ebin/
.eunit/ .eunit/
_build _build
rebar.lock

View file

@ -5,6 +5,9 @@ all: compile
compile: compile:
$(REBAR) compile $(REBAR) compile
update:
$(REBAR) update
test: compile test: compile
$(REBAR) eunit $(REBAR) eunit

View file

@ -1,7 +1,5 @@
%% -*- erlang -*- %% -*- erlang -*-
%% vim:ts=4 sw=4 et ft=erlang %% vim:ts=4 sw=4 et ft=erlang
{require_otp_vsn, "R13B04|R14|R15|R16|17|18"}.
{cover_enabled, true}. {cover_enabled, true}.
%% For rebar2 compat %% For rebar2 compat
@ -12,7 +10,10 @@
%% breakage. %% breakage.
{erlware_commons, ".*", {git, "git://github.com/erlware/erlware_commons.git", {tag, "v0.15.0"}}}, {erlware_commons, ".*", {git, "git://github.com/erlware/erlware_commons.git", {tag, "v0.15.0"}}},
{erlang_localtime, ".*", {git, "git://github.com/dmitryme/erlang_localtime.git", {branch, master}}} %% We'll temporarily still use choptastic/erlang_localtime until
%% https://github.com/dmitryme/erlang_localtime/pull/24 gets merged. Then we
%% can switch to the mainline repo
{erlang_localtime, ".*", {git, "git://github.com/choptastic/erlang_localtime.git", {branch, master}}}
]}. ]}.
%% for rebar3 %% for rebar3

View file

@ -1,7 +1,7 @@
{application, qdate, {application, qdate,
[ [
{description, "Simple Date and Timezone handling for Erlang"}, {description, "Simple Date and Timezone handling for Erlang"},
{vsn, "0.4.1"}, {vsn, "0.4.2"},
{registered, []}, {registered, []},
{applications, [ {applications, [
kernel, kernel,