Skip to content

Commit

Permalink
Make rebar compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
toopay committed Oct 2, 2015
1 parent 9588ce7 commit 8db58cb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{lib_dirs, ["deps"]}.
{deps_dir, ["deps"]}.
{require_otp_vsn, "R1[456]"}.
{erl_opts, [ debug_info
, warn_format
, warn_export_all
, warn_export_vars
, warn_obsolete_guard
, warn_bif_clash
, nowarn_shadow_vars
, warnings_as_errors
]}.
{xref_warnings, false}.
{xref_checks, [undefined_function_calls]}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{dialyzer_opts, [{warnings,
[ error_handling
, race_conditions
, behaviours
]}
]}.
{clean_files, [".eunit", "ebin/*.beam", "test/*.beam"]}.

{deps, [
{ibrowse, ".*", {git, "https://github.com/cmullaparthi/ibrowse.git", {tag, "v4.1.1"}}},
{jsx, ".*", {git, "https://github.com/talentdeficit/jsx.git", {tag, "v1.4.2"}}}
]}.

0 comments on commit 8db58cb

Please sign in to comment.