-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
369 additions
and
54 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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
```@meta | ||
CurrentModule = PkgTemplates | ||
``` | ||
|
||
# PkgTemplates Developer Guide | ||
|
||
PkgTemplates can be easily extended by adding new [`Plugin`](@ref)s. | ||
|
||
## The `Plugin` Interface | ||
|
||
```@docs | ||
gen_plugin | ||
gitignore | ||
badges | ||
Badge | ||
view | ||
user_view | ||
combined_view | ||
tags | ||
``` | ||
|
||
## The `BasicPlugin` Interface | ||
|
||
While subtyping [`Plugin`](@ref) gives you complete freedom, it's not always necessary. | ||
For more constrained cases, a simpler API exists. | ||
|
||
```@docs | ||
BasicPlugin | ||
source | ||
destination | ||
``` |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
```@meta | ||
CurrentModule = PkgTemplates | ||
``` | ||
|
||
# PkgTemplates User Guide | ||
|
||
Using PkgTemplates is straightforward. | ||
Just create a [`Template`](@ref), and call it on a package name to generate that package. | ||
|
||
## Template | ||
|
||
```@docs | ||
Template | ||
``` | ||
|
||
## Plugins | ||
|
||
Plugins are PkgTemplates' source of customization and extensibility. | ||
Add plugins to your templates to enable extra pieces of repository setup. | ||
|
||
```@docs | ||
Plugin | ||
``` | ||
|
||
### Defaults | ||
|
||
These plugins are included in [`Template`](@ref)s by default. | ||
They can be overridden by supplying another value via the `plugins` keyword, or disabled by supplying the type via the `disable_defaults` keyword. | ||
|
||
```@docs | ||
Gitignore | ||
License | ||
Readme | ||
Tests | ||
``` | ||
|
||
### Continuous Integration (CI) | ||
|
||
These plugins will create the configuration files of common CI services for you. | ||
|
||
```@docs | ||
AppVeyor | ||
CirrusCI | ||
GitLabCI | ||
TravisCI | ||
``` | ||
|
||
### Code Coverage | ||
|
||
These plugins will enable code coverage reporting from CI. | ||
|
||
```@docs | ||
Codecov | ||
Coveralls | ||
``` | ||
|
||
### Documentation | ||
|
||
```@docs | ||
Documenter | ||
``` | ||
|
||
### Miscellaneous | ||
|
||
```@docs | ||
Citation | ||
``` |
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
Oops, something went wrong.