Skip to content

Commit

Permalink
Properly display readme page in hex docs
Browse files Browse the repository at this point in the history
  • Loading branch information
badams-scos authored May 16, 2019
1 parent 7c9f2f4 commit d01da73
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The package can be installed by adding `divo_redis` to your list of dependencies
def deps do
[
{:divo, "~> 1.1"},
{:divo_redis, "~> 0.1.1"}
{:divo_redis, "~> 0.1.2"}
]
end
```
Expand Down
13 changes: 12 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ defmodule DivoRedis.MixProject do
def project do
[
app: :divo_redis,
version: "0.1.1",
version: "0.1.2",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
description: description(),
source_url: "https://github.com/smartcitiesdata/divo_redis"
Expand Down Expand Up @@ -40,4 +41,14 @@ defmodule DivoRedis.MixProject do
links: %{"GitHub" => "https://github.com/smartcitiesdata/divo_redis"}
]
end

defp docs do
[
main: "readme",
source_url: "https://www.github.com/smartcitiesdata/divo_redis",
extras: [
"README.md"
]
]
end
end

0 comments on commit d01da73

Please sign in to comment.