Skip to content

Commit 4059e18

Browse files
kianmengmayel
authored andcommitted
Misc doc changes (izelnakri#117)
List of changes: - Always use the latest ex_doc - Sort deps - Add source reference - Set readme as default html page - Add changelog to html doc - Fix typos, indentation, and markdowns - Update .gitignore - Add editorconfig file - Add license section - Add project description section Author: Kian-Meng, Ang <[email protected]> Date: Sun Nov 29 20:13:44 2020 +0800
1 parent c766691 commit 4059e18

27 files changed

+275
-3689
lines changed

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# .editorconfig for Elixir projects
4+
# https://git.io/elixir-editorconfig
5+
6+
# top-most EditorConfig file
7+
root = true
8+
9+
[*]
10+
indent_style = space
11+
indent_size = 2
12+
end_of_line = lf
13+
charset = utf-8
14+
trim_trailing_whitespace = true
15+
insert_final_newline = true
16+
17+
[*.{md, markdown, eex}]
18+
trim_trailing_whitespace = false
19+
20+
[Makefile]
21+
indent_style = tab

.gitignore

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
1-
/_build
2-
/cover
3-
/deps
1+
# The directory Mix will write compiled artifacts to.
2+
/_build/
3+
4+
# If you run "mix test --cover", coverage assets end up here.
5+
/cover/
6+
7+
# The directory Mix downloads your dependencies sources to.
8+
/deps/
9+
10+
# Where third-party dependencies like ExDoc output generated docs.
11+
/doc/
12+
13+
# Ignore .fetch files in case you like to edit your project deps locally.
14+
/.fetch
15+
16+
# If the VM crashes, it generates a dump, let's ignore it too.
417
erl_crash.dump
18+
19+
# Also ignore archive artifacts (built via "mix archive.build").
520
*.ez
6-
.elixir_ls
7-
.tool-versions
21+
22+
# Ignore package tarball (built via "mix hex.build").
23+
paper_trail-*.tar
24+
25+
# Temporary files for e.g. tests
26+
/tmp

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Changelog
2+
13
### v0.8.3 - September 10th, 2019:
24
- PaperTrail.delete now accepts Ecto.Changeset
35

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The MIT License (MIT)
2-
Copyright (c) 2016 Izel Nakri
2+
Copyright (c) 2016-present Izel Nakri
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55

README.md

Lines changed: 200 additions & 186 deletions
Large diffs are not rendered by default.

doc/.build

Lines changed: 0 additions & 19 deletions
This file was deleted.

doc/404.html

Lines changed: 0 additions & 123 deletions
This file was deleted.

doc/Mix.Tasks.Papertrail.Install.html

Lines changed: 0 additions & 180 deletions
This file was deleted.

0 commit comments

Comments
 (0)