rebar.config 1.1 KB

123456789101112131415161718192021222324252627282930
  1. %% -*- erlang -*-
  2. {erl_opts, [debug_info]}.
  3. {deps, [
  4. {edown, ".*", {git, "https://github.com/uwiger/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. {profiles, [
  15. {doc, [
  16. {deps, [
  17. {edown, ".*",
  18. {git, "https://github.com/uwiger/edown.git", "HEAD"}}
  19. ]}
  20. , {edoc_opts, [{doclet, edown_doclet},
  21. {app_default, "http://www.erlang.org/doc/man"},
  22. {top_level_readme,
  23. {"./README.md",
  24. "http://github.com/uwiger/gproc"}}]}
  25. ]}
  26. ]}.
  27. {shell, [{apps, [gproc]}]}.