rebar.config 711 B

1234567891011121314151617
  1. %% -*- erlang -*-
  2. {erl_opts, [debug_info]}.
  3. {deps, [
  4. {edown, ".*", {git, "git://github.com/esl/edown.git", "HEAD"}},
  5. {gen_leader, ".*",
  6. {git, "git://github.com/abecciu/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. {top_level_readme,
  16. {"./README.md",
  17. "http://github.com/esl/gproc"}}]}.