-
Notifications
You must be signed in to change notification settings - Fork 2
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 #1 from Infectious-Disease-Modeling-Hubs/split-hub…
…utils Split hubutils - Release v0.0.1
- Loading branch information
Showing
133 changed files
with
18,737 additions
and
5 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 |
---|---|---|
|
@@ -12,3 +12,5 @@ | |
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^data-raw$ | ||
^vignettes/articles$ |
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 |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
.secrets | ||
.quarto | ||
docs | ||
inst/doc |
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,13 @@ | ||
linters: linters_with_defaults( | ||
line_length_linter = line_length_linter(120L), | ||
commented_code_linter = NULL | ||
commented_code_linter = NULL, | ||
object_length_linter(length = 50L) | ||
) | ||
exclusions: list( | ||
"R/validate-config-utils.R" = list( | ||
line_length_linter = Inf | ||
), | ||
"tests/testthat/helper-view-val-tbl.R" = list( | ||
object_usage_linter = Inf | ||
) | ||
) |
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,6 +1,6 @@ | ||
Package: hubAdmin | ||
Title: Utilities for administering hubverse Hubs | ||
Version: 0.0.0.9000 | ||
Version: 0.0.1 | ||
Authors@R: | ||
c(person("Anna", "Krystalli", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-2378-4915")), | ||
|
@@ -15,9 +15,38 @@ License: MIT + file LICENSE | |
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.1 | ||
Suggests: | ||
testthat (>= 3.0.0) | ||
Config/testthat/edition: 3 | ||
URL: https://github.com/Infectious-Disease-Modeling-Hubs/hubAdmin | ||
BugReports: https://github.com/Infectious-Disease-Modeling-Hubs/hubAdmin/issues | ||
Imports: | ||
checkmate, | ||
cli, | ||
fs, | ||
glue, | ||
gt (>= 0.10.0), | ||
hubUtils (>= 0.0.1), | ||
jsonlite, | ||
jsonvalidate, | ||
magrittr, | ||
purrr, | ||
rlang, | ||
stringr, | ||
tibble | ||
Suggests: | ||
covr, | ||
curl, | ||
digest, | ||
gh, | ||
hubData, | ||
knitr, | ||
mockery, | ||
rmarkdown, | ||
testthat (>= 3.2.0) | ||
Remotes: | ||
Infectious-Disease-Modeling-Hubs/hubData#1, | ||
Infectious-Disease-Modeling-Hubs/hubUtils@split-hubutils | ||
Config/Needs/website: Infectious-Disease-Modeling-Hubs/hubStyle | ||
Depends: | ||
R (>= 2.10) | ||
LazyData: true | ||
VignetteBuilder: knitr |
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,2 +1,24 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export("%>%") | ||
export(create_config) | ||
export(create_model_task) | ||
export(create_model_tasks) | ||
export(create_output_type) | ||
export(create_output_type_cdf) | ||
export(create_output_type_mean) | ||
export(create_output_type_median) | ||
export(create_output_type_pmf) | ||
export(create_output_type_quantile) | ||
export(create_output_type_sample) | ||
export(create_round) | ||
export(create_rounds) | ||
export(create_target_metadata) | ||
export(create_target_metadata_item) | ||
export(create_task_id) | ||
export(create_task_ids) | ||
export(validate_config) | ||
export(validate_hub_config) | ||
export(validate_model_metadata_schema) | ||
export(view_config_val_errors) | ||
importFrom(magrittr,"%>%") |
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,3 @@ | ||
# hubAdmin 0.0.1 | ||
|
||
* Initial package release resulting from split of `hubUtils` package. See [`hubUtils` NEWS.md](https://github.com/Infectious-Disease-Modeling-Hubs/hubUtils/blob/main/NEWS.md) for details including previous release notes. |
Oops, something went wrong.