Rename project to qdate_localtime

This commit is contained in:
Jesse Gumm 2016-07-06 17:27:10 -05:00
parent 553e358728
commit 8ee010459f
4 changed files with 15 additions and 4 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
ebin/
_build/
*~

View file

@ -1,3 +1,13 @@
## NOTE
This is a fork of
[erlang_localtime](https://github.com/dmitryme/erlang_localtime), modified
specifically for compatibility with
[qdate](https://github.com/choptastic/qdate). The two are mostly compatible,
but have diverged a bit over the years. The qdate tests will not pass if the
original erlang_localtime dependency is used due to some subtle differences to
attempt to make qdate a little bit smarter.
#### Public exports
* utc_to_local(DateTime, Timezone) - converts UTC time to local according to specified Timezone

BIN
rebar3

Binary file not shown.

View file

@ -1,12 +1,12 @@
{application, 'erlang_localtime',
{application, 'qdate_localtime',
[
{description, "Erlang library for conversion from one local time to another"},
{vsn, "1.0.1"},
{description, "Erlang library for conversion from one local time to another (forked specifically for qdate compatibility)"},
{vsn, "1.1.0"},
{applications, [kernel, stdlib]},
{modules, []},
{registered, []},
{env, []},
{maintainers, ["Jesse Gumm", "Heinz N. Gies"]},
{licenses, ["BSD"]},
{links, [{"Github", "https://github.com/choptastic/erlang_localtime"}]}
{links, [{"Github", "https://github.com/choptastic/qdate_localtime"}]}
]}.