Skip to content

Commit

Permalink
Merge pull request #1 from Infectious-Disease-Modeling-Hubs/split-hub…
Browse files Browse the repository at this point in the history
…utils

Split hubutils - Release v0.0.1
  • Loading branch information
annakrystalli authored Mar 6, 2024
2 parents eec0161 + 2c01df7 commit 90163fc
Show file tree
Hide file tree
Showing 133 changed files with 18,737 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@
^_pkgdown\.yml$
^docs$
^pkgdown$
^data-raw$
^vignettes/articles$
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
.secrets
.quarto
docs
inst/doc
11 changes: 10 additions & 1 deletion .lintr
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
)
)
35 changes: 32 additions & 3 deletions DESCRIPTION
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")),
Expand All @@ -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
22 changes: 22 additions & 0 deletions NAMESPACE
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,"%>%")
3 changes: 3 additions & 0 deletions NEWS.md
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.
Loading

0 comments on commit 90163fc

Please sign in to comment.