mirror of
https://github.com/valitydev/yamerl.git
synced 2024-11-06 10:55:16 +00:00
ef9c56f193
PR: #836
24 lines
530 B
Erlang
24 lines
530 B
Erlang
%% -*-erlang-*-
|
|
%% vim:ft=erlang:
|
|
|
|
{application, @PACKAGE_NAME@, [
|
|
{description,
|
|
"Pure Erlang YAML 1.2 parser"
|
|
},
|
|
{vsn, "@VERSION@"},
|
|
{modules, [
|
|
%% DO NOT EDIT: Modules list is generated by Makefile.am.
|
|
]},
|
|
{registered, [yamerl_sup]},
|
|
{applications, [
|
|
kernel,
|
|
stdlib
|
|
]},
|
|
{mod, {yamerl_app, []}},
|
|
{env, [
|
|
%% Configuration default values.
|
|
%% DO NOT EDIT: The final configuration is made in sys.config.
|
|
{node_mods, []}
|
|
]}
|
|
]}.
|