Browse Source

Change profile name: doc => edown

Takeru Ohta 9 years ago
parent
commit
b377d53e67
2 changed files with 6 additions and 3 deletions
  1. 1 1
      Makefile
  2. 5 2
      rebar.config

+ 1 - 1
Makefile

@@ -13,7 +13,7 @@ eunit:
 	@./rebar3 eunit
 
 edoc:
-	@./rebar3 as doc edoc
+	@./rebar3 as edown edoc
 
 start: compile
 	@./rebar3 shell

+ 5 - 2
rebar.config

@@ -18,7 +18,6 @@
 {cover_enabled, true}.
 
 {edoc_opts, [
-             {doclet, edown_doclet},
              {dialyzer_specs, all},
              {report_missing_type, true},
              {report_type_mismatch, true},
@@ -34,8 +33,12 @@
 
 {profiles,
  [
-  {doc,
+  {edown,
    [
+    {edoc_opts,
+     [
+      {doclet, edown_doclet}
+     ]},
     {deps,
      [
       {edown, {git, "git://github.com/uwiger/edown.git", {branch, "master"}}}