-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from kianmeng/misc-doc-changes
Misc doc changes
- Loading branch information
Showing
6 changed files
with
43 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
The MIT License (MIT) | ||
# The MIT License (MIT) | ||
|
||
Copyright (c) 2015 Jonathan Clem | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
defmodule Logfmt.MixProject do | ||
use Mix.Project | ||
|
||
@version "3.3.2" | ||
@source_url "https://github.com/jclem/logfmt-elixir" | ||
@version "3.3.2" | ||
|
||
def project do | ||
[ | ||
|
@@ -42,19 +42,17 @@ defmodule Logfmt.MixProject do | |
|
||
defp package do | ||
[ | ||
contributors: ["Jonathan Clem <[email protected]>"], | ||
licenses: ["MIT"], | ||
links: %{"GitHub" => @source_url}, | ||
maintainers: ["Jonathan Clem <[email protected]>"], | ||
files: ~w(mix.exs lib README.md LICENSE.md) | ||
] | ||
end | ||
|
||
defp docs do | ||
[ | ||
source_ref: "v#{@version}", | ||
extras: ["LICENSE.md": [title: "License"], "README.md": [title: "Readme"]], | ||
main: "readme", | ||
extras: ["README.md": [title: "Readme"], "LICENSE.md": [title: "License"]] | ||
source_ref: "v#{@version}" | ||
] | ||
end | ||
end |