Skip to content

Commit 7338bad

Browse files
committed
Ignore two functions when building.
1 parent 5f6453d commit 7338bad

5 files changed

Lines changed: 6 additions & 3 deletions

File tree

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
^LICENSE\.md$
2+
^CLAUDE\.md$
23
Makefile
34
^_pkgdown\.yml$
45
^\.github$

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ BugReports: https://github.com/henryspatialanalysis/versioning/issues
3232
License: MIT + file LICENSE
3333
Encoding: UTF-8
3434
Roxygen: list(markdown = TRUE)
35-
RoxygenNote: 7.2.3
35+
RoxygenNote: 7.3.3
3636
Config/testthat/edition: 3
3737
VignetteBuilder: knitr

R/misc.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
#' @param ... Parameters passed to `stop()`
66
#'
77
#' @return Concisely stops program execution
8-
#' @internal
8+
#' @keywords internal
99
qstop <- function(...) stop(..., call. = FALSE)
1010

1111
#' Require that a namespace be loaded, or stop execution
1212
#'
1313
#' @param pkg (`character(1)`) Package to be loaded
1414
#'
1515
#' @return Silently loads namespace, or stops execution if package cannot be loaded
16-
#' @internal
16+
#' @keywords internal
1717
require_namespace_or_stop <- function(pkg) {
1818
if (!requireNamespace(pkg, quietly = TRUE)){
1919
paste('Package', pkg, 'is required.') |> qstop()

man/qstop.Rd

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/require_namespace_or_stop.Rd

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)