You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: R/rstd.gen.R
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
# See `README.md#r-markdown-format` for more information on the literate programming approach used applying the R Markdown format.
3
3
4
4
# rstd: Unofficial Utility Functions Around the RStudio IDE
5
-
# Copyright (C) 2024 Salim Brüggemann
5
+
# Copyright (C) 2025 Salim Brüggemann
6
6
#
7
7
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free
8
8
# Software Foundation, either version 3 of the License, or any later version.
error=function(e) cli::cli_alert_warning(text="Failed to clear pkgpins cache on load of {.pkg {pkgname}}. Error message: {e$message}"))
22
22
}
@@ -276,11 +276,11 @@ pkg_status <- function() {
276
276
277
277
#' `r this_pkg` package configuration metadata
278
278
#'
279
-
#' A [tibble][tibble::tbl_df] with metadata of all possible `r this_pkg` package configuration options. See [pal::pkg_config_val()] for more information.
279
+
#' A [tibble][tibble::tbl_df] with metadata of all possible `r this_pkg` package configuration options. See [funky::config_val()] for more information.
error = function(e) cli::cli_alert_warning(text = "Failed to clear pkgpins cache on load of {.pkg {pkgname}}. Error message: {e$message}"))
18
18
}
@@ -382,17 +382,17 @@ pkg_status <- function() {
382
382
383
383
## Miscellaneous
384
384
385
-
### `pkg_config`
385
+
### `funky_config`
386
386
387
387
```{r}
388
388
#' `r this_pkg` package configuration metadata
389
389
#'
390
-
#' A [tibble][tibble::tbl_df] with metadata of all possible `r this_pkg` package configuration options. See [pal::pkg_config_val()] for more information.
390
+
#' A [tibble][tibble::tbl_df] with metadata of all possible `r this_pkg` package configuration options. See [funky::config_val()] for more information.
Copy file name to clipboardExpand all lines: Rmd/sysdata.nopurl.Rmd
+7-9Lines changed: 7 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -10,21 +10,19 @@ editor_options:
10
10
11
11
- The chunks below have to be manually executed in order to regenerate the package data.
12
12
13
-
- Although the datasets below are saved as ["internal data" in `R/sysdata.rda`](https://r-pkgs.org/data.html#sec-data-sysdata), they can still be
14
-
exported and documented (by documenting the dataset's quoted name in the main `.Rmd` source file – which only works when the dataset is also `@export`ed),
15
-
something [not explicitly mentioned](https://coolbutuseless.github.io/2018/12/10/r-packages-internal-and-external-data/) in the book [R
13
+
- Although the datasets below are saved as ["internal data" in `R/sysdata.rda`](https://r-pkgs.org/data.html#sec-data-sysdata), they can still be exported and
14
+
documented (by documenting the dataset's quoted name in the main `.Rmd` source file – which only works when the dataset is also `@export`ed), something [not
15
+
explicitly mentioned](https://coolbutuseless.github.io/2018/12/10/r-packages-internal-and-external-data/) in the book [R
16
16
Packages](https://r-pkgs.org/data.html#sec-data-data). To do so, you first need to manually add the `export()` directive in the NAMESPACE file since
0 commit comments