From 51000e3dead14d8ef7c68ce5ebddb3e116c272aa Mon Sep 17 00:00:00 2001 From: Michel Lang Date: Mon, 26 Aug 2019 01:00:02 +0200 Subject: [PATCH] cleanup before release --- .ignore | 1 + DESCRIPTION | 2 +- R/{as_sqlite.R => as_sqlite_backend.R} | 2 +- man/as_sqlite_backend.Rd | 4 ++-- tests/testthat/{test_as_sqlite.R => test_as_sqlite_backend.R} | 0 5 files changed, 5 insertions(+), 4 deletions(-) rename R/{as_sqlite.R => as_sqlite_backend.R} (98%) rename tests/testthat/{test_as_sqlite.R => test_as_sqlite_backend.R} (100%) diff --git a/.ignore b/.ignore index 5ad99b9..00501a8 100644 --- a/.ignore +++ b/.ignore @@ -3,3 +3,4 @@ docs/ inst/doc/ attic/ vignettes/*.html +pkgdown/ diff --git a/DESCRIPTION b/DESCRIPTION index d401562..5b1deb4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -22,7 +22,7 @@ Imports: data.table, digest, dplyr, - mlr3, + mlr3 (>= 0.1.2), R6 Suggests: DBI, diff --git a/R/as_sqlite.R b/R/as_sqlite_backend.R similarity index 98% rename from R/as_sqlite.R rename to R/as_sqlite_backend.R index 4acf27f..93c639a 100644 --- a/R/as_sqlite.R +++ b/R/as_sqlite_backend.R @@ -12,7 +12,7 @@ #' See description. #' @param path (`NULL` | `character(1)`)\cr #' Path for the SQLite data base. Defaults to a file in the temporary directory of the R session, see [tempfile()]. -#' @param ... (any)\cr +#' @param ... (`any`)\cr #' Additional arguments, currently ignored. #' #' @return [DataBackendDplyr]. diff --git a/man/as_sqlite_backend.Rd b/man/as_sqlite_backend.Rd index b05b293..2243c89 100644 --- a/man/as_sqlite_backend.Rd +++ b/man/as_sqlite_backend.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/as_sqlite.R +% Please edit documentation in R/as_sqlite_backend.R \name{as_sqlite_backend} \alias{as_sqlite_backend} \title{Convert to use a SQLite Backend} @@ -13,7 +13,7 @@ See description.} \item{path}{(\code{NULL} | \code{character(1)})\cr Path for the SQLite data base. Defaults to a file in the temporary directory of the R session, see \code{\link[=tempfile]{tempfile()}}.} -\item{...}{(any)\cr +\item{...}{(\code{any})\cr Additional arguments, currently ignored.} } \value{ diff --git a/tests/testthat/test_as_sqlite.R b/tests/testthat/test_as_sqlite_backend.R similarity index 100% rename from tests/testthat/test_as_sqlite.R rename to tests/testthat/test_as_sqlite_backend.R