Skip to content

Commit

Permalink
Bumped all versions, mention how subdirectories can be ignored.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Oct 18, 2024
1 parent aa95403 commit 9644019
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: SewerRat
Version: 0.2.9
Date: 2024-10-03
Version: 0.2.10
Date: 2024-10-18
Title: Client for the SewerRat API
Description:
Search metadata files across a shared filesystem via the SewerRat API.
Expand Down
2 changes: 1 addition & 1 deletion R/startSewerRat.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#' startSewerRat() # initialize a new instance.
#'
#' @export
startSewerRat <- function(db=tempfile(fileext=".sqlite3"), port=NULL, wait = 1, version = "1.0.9", overwrite = FALSE) {
startSewerRat <- function(db=tempfile(fileext=".sqlite3"), port=NULL, wait = 1, version = "1.0.11", overwrite = FALSE) {
if (!is.null(running$active)) {
return(list(new=FALSE, port=running$port, url=assemble_url(running$port)))
}
Expand Down
1 change: 1 addition & 0 deletions vignettes/userguide.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ write(file=file.path(mydir, "stuff", "metadata.json"), '{ "food": "barramundi" }

We can then easily register it with the `register()` function.
The example below will only index metadata files inside `mydir` named `metadata.json`, though any number of base names can be supplied here.
We can also instruct SewerRat to skip indexing of a subdirectory within `mydir` by creating a `.SewerRatignore` file inside that subdirectory.

```{r}
library(SewerRat)
Expand Down

0 comments on commit 9644019

Please sign in to comment.