-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15fc08f
commit 8a745c0
Showing
13 changed files
with
45 additions
and
37 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
cff-version: 1.2.0 | ||
title: 'Default.jl' | ||
title: 'DefaultKeywordArguments.jl' | ||
message: 'If you use this software, please cite it as below.' | ||
authors: | ||
- family-names: 'Bailo' | ||
given-names: 'Rafael' | ||
orcid: 'https://orcid.org/0000-0001-8018-3799' | ||
type: software | ||
version: 1.0.0 | ||
url: 'https://github.com/PdIPS/Default.jl' | ||
version: 1.1.0 | ||
url: 'https://github.com/PdIPS/DefaultKeywordArguments.jl' |
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,3 +1,3 @@ | ||
[deps] | ||
Default = "d739bc73-037a-4484-8212-e0e00e9ea6bf" | ||
DefaultKeywordArguments = "d739bc73-037a-4484-8212-e0e00e9ea6bf" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" |
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,22 +1,30 @@ | ||
push!(LOAD_PATH, "../src/") | ||
|
||
using Default | ||
using DefaultKeywordArguments | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(Default, :DocTestSetup, :(using Default); recursive = true) | ||
DocMeta.setdocmeta!( | ||
DefaultKeywordArguments, | ||
:DocTestSetup, | ||
:(using DefaultKeywordArguments); | ||
recursive = true, | ||
) | ||
|
||
makedocs(; | ||
modules = [Default], | ||
modules = [DefaultKeywordArguments], | ||
authors = "Dr Rafael Bailo", | ||
repo = "https://github.com/PdIPS/Default.jl/blob/{commit}{path}#{line}", | ||
sitename = "Default.jl", | ||
repo = "https://github.com/PdIPS/DefaultKeywordArguments.jl/blob/{commit}{path}#{line}", | ||
sitename = "DefaultKeywordArguments.jl", | ||
format = Documenter.HTML(; | ||
prettyurls = get(ENV, "CI", "false") == "true", | ||
canonical = "https://PdIPS.github.io/Default.jl", | ||
canonical = "https://PdIPS.github.io/DefaultKeywordArguments.jl", | ||
edit_link = "main", | ||
assets = String[], | ||
), | ||
pages = ["Home" => "index.md"], | ||
) | ||
|
||
deploydocs(; repo = "github.com/PdIPS/Default.jl", devbranch = "main") | ||
deploydocs(; | ||
repo = "github.com/PdIPS/DefaultKeywordArguments.jl", | ||
devbranch = "main", | ||
) |
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,4 +1,4 @@ | ||
module Default | ||
module DefaultKeywordArguments | ||
|
||
""" | ||
``` | ||
|
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 @@ | ||
using Default, Test | ||
using DefaultKeywordArguments, Test | ||
|
||
const default_config = (; a = 1, b = 1.0, c = 1 // 1) | ||
|
||
|
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 @@ | ||
using Default, Test | ||
using DefaultKeywordArguments, Test | ||
|
||
const default_values = (; a = 1, b = 1.0, c = 1 // 1) | ||
|
||
|
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,3 +1,3 @@ | ||
using Aqua, Default | ||
using Aqua, DefaultKeywordArguments | ||
|
||
Aqua.test_all(Default, deps_compat = false) | ||
Aqua.test_all(DefaultKeywordArguments, deps_compat = false) |
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