Skip to content

Commit c84c70b

Browse files
committed
description, published on hex as 0.1.0
1 parent 29a0c55 commit c84c70b

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

mix.exs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ defmodule Dmp.MixProject do
1010
version: @version,
1111
elixir: "~> 1.11",
1212
start_permanent: Mix.env() == :prod,
13+
deps: deps(),
1314
source_url: @github_project_url,
1415
hompepage_url: @github_project_url,
15-
deps: deps(),
16+
description: description(),
1617
package: package(),
1718
docs: docs()
1819
]
@@ -25,9 +26,15 @@ defmodule Dmp.MixProject do
2526
]
2627
end
2728

29+
defp description do
30+
"""
31+
An Elixir implementation of the Google diff_match_patch library.
32+
"""
33+
end
34+
2835
defp package do
2936
[
30-
licenses: "Apache-2.0",
37+
licenses: ["Apache-2.0"],
3138
links: %{"GitHub" => @github_project_url}
3239
]
3340
end

0 commit comments

Comments
 (0)