diff --git a/README.md b/README.md index b3a4f47..7c37d7c 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ It can help you spend your time mostly on your issues instead of developing API ```elixir def deps do - [{:prex, "~> 0.1.0", only: [:dev]}] + [{:prex, "~> 0.1.0", only: :dev, runtime: false}] end ``` @@ -40,7 +40,7 @@ end defmodule MyApi.User do @moduledoc """ Represents user details. - + **User attributes:** - id `(Number)` : unique identifier. - fname `(String)` : First Name. diff --git a/mix.exs b/mix.exs index 0cf3589..4761b7f 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Prex.Mixfile do use Mix.Project - @version "0.0.1" + @version "0.0.2" def project do [app: :prex, @@ -13,7 +13,8 @@ defmodule Prex.Mixfile do package: package(), deps: deps(), name: "Prex", - source_url: "https://github.com/alisinabh/prex"] + source_url: "https://github.com/alisinabh/prex", + docs: [main: "readme", extras: ["README.md"]]] end # Configuration for the OTP application