rebar.config 767 B

123456789101112131415161718
  1. %% -*- erlang -*-
  2. {erl_opts, [debug_info]}.
  3. {deps, [
  4. {edown, ".*", {git, "https://github.com/esl/edown.git", "HEAD"}},
  5. {gen_leader, ".*",
  6. {git, "https://github.com/garret-smith/gen_leader_revival.git", "HEAD"}}
  7. ]}.
  8. {dialyzer_opts, [{warnings, [no_unused,
  9. no_improper_lists, no_fun_app, no_match,
  10. no_opaque, no_fail_call,
  11. error_handling, no_match,
  12. unmatched_returns,
  13. behaviours, underspecs]}]}.
  14. {edoc_opts, [{doclet, edown_doclet},
  15. {app_default, "http://www.erlang.org/doc/man"},
  16. {top_level_readme,
  17. {"./README.md",
  18. "http://github.com/esl/gproc"}}]}.