Rename project to qdate_localtime
This commit is contained in:
parent
553e358728
commit
8ee010459f
4 changed files with 15 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
ebin/
|
||||
_build/
|
||||
*~
|
||||
|
|
10
README.md
10
README.md
|
@ -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
BIN
rebar3
Binary file not shown.
|
@ -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"}]}
|
||||
]}.
|
Loading…
Add table
Add a link
Reference in a new issue