Current section
Files
Jump to
Current section
Files
rebar.config
{erl_opts, [debug_info]}.
{deps, []}.
{pre_hooks,
[{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd)", compile, "gmake -C c_src"}]}.
{post_hooks,
[{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd)", clean, "gmake -C c_src clean"}]}.
{dialyzer, [{warnings, [unmatched_returns, error_handling, underspecs]}]}.
{profiles, [
{docs, [
{deps,
[{edown, ".*",
{git, "git://github.com/uwiger/edown.git", {tag, "0.8"}}}]},
{edoc_opts, [
{preprocess, true}
, {doclet, edown_doclet}
, {top_level_readme,
{"./README.md",
"http://github.com/erpuno/ecsv"}}
]}
]}
]}.