Skip to content

Commit 4ec5a7d

Browse files
cran prep
1 parent eb76baa commit 4ec5a7d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+205
-101
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
^README\.Rmd$
1111
^RVerbalExpressions\.Rproj$
1212
^\.Rproj\.user$
13+
^cran-comments\.md$

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: RVerbalExpressions
22
Title: Create Regular Expressions Easily
3-
Version: 0.0.0.9000
3+
Version: 0.1.0
44
Authors@R: c(
55
person("Tyler", "Littlefield", email = "[email protected]", role = c("aut", "cre"), comment=c(ORCID="0000-0002-6020-1125")),
66
person("Dmytro", "Perepolkin", email = "[email protected]", role = c("ctb"), comment=c(ORCID="0000-0001-8558-6183")))

NAMESPACE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export(rx_not)
2727
export(rx_one_or_more)
2828
export(rx_punctuation)
2929
export(rx_range)
30-
export(rx_repeat_previous)
3130
export(rx_seek_prefix)
3231
export(rx_seek_suffix)
3332
export(rx_something)

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# RVerbalExpressions 0.0.0.9000
2+
3+
* Added a `NEWS.md` file to track changes to the package.

R/modifiers.R

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,3 @@ rx_with_any_case <- function(.data = NULL, enable = TRUE) {
2828
.data
2929
}
3030
}
31-
32-
#' Repeat the previous item exactly count times.
33-
#'
34-
#' @param .data Expression to append, typically pulled from the pipe \code{ \%>\% }
35-
#' @param n Number of times to repeat
36-
#' @export
37-
rx_repeat_previous <- function(.data, n) {
38-
switch (
39-
as.character(missing(n)),
40-
"FALSE" = new_rx(paste0(.data, "{", n, "}")),
41-
"TRUE" = stop("n requires an integer")
42-
)
43-
}

cran-comments.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## Test environments
2+
* local OS X install, R 3.6.0
3+
* ubuntu 14.04 (on travis-ci), R 3.6.0
4+
* win-builder (devel and release)
5+
6+
## R CMD check results
7+
8+
0 errors | 0 warnings | 1 note
9+
10+
* This is a new release.

docs/404.html

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE.html

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/examples.html

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)