Skip to content

Commit

Permalink
version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pkrog authored and cran-robot committed Feb 24, 2024
0 parents commit 0210452
Show file tree
Hide file tree
Showing 27 changed files with 4,162 additions and 0 deletions.
22 changes: 22 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Package: fscache
Title: File System Cache
Version: 1.0.2
Authors@R: c(person("Pierrick", "Roger", email="pierrick.roger@cea.fr", role=c("aut", "cre"), comment=c(ORCID="0000-0001-8177-4873")))
Maintainer: Pierrick Roger <pierrick.roger@cea.fr>
Description: Manages a file system cache. Regular files can be moved or copied to the cache folder. Sub-folders can be created in order to organize the files. Files can be located inside the cache using a glob function. Text contents can be easily stored in and retrieved from the cache using dedicated functions. It can be used for an application or a package, as a global cache, or as a per-user cache, in which case the standard OS user cache folder will be used (e.g.: on Linux $HOME/.cache/R/my_app_or_pkg_cache_folder).
URL: https://gitlab.com/dbapis/r-fscache
BugReports: https://gitlab.com/dbapis/r-fscache/-/issues
Depends: R (>= 4.1)
License: AGPL-3
Encoding: UTF-8
Suggests: covr, knitr, rmarkdown, roxygen2, stringr, testthat (>=
2.0.0)
Imports: R.utils, R6, chk, lgr, stringi, tools
NeedsCompilation: no
RoxygenNote: 7.3.1
Collate: 'fcts.R' 'Cache.R' 'package.R'
VignetteBuilder: knitr
Packaged: 2024-02-21 17:25:11 UTC; pierrick
Author: Pierrick Roger [aut, cre] (<https://orcid.org/0000-0001-8177-4873>)
Repository: CRAN
Date/Publication: 2024-02-23 19:10:05 UTC
26 changes: 26 additions & 0 deletions MD5
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
770ed1d4e6906e248e910d2b3285e8a1 *DESCRIPTION
1057d55725c9912338bc3bb92e6387a0 *NAMESPACE
4a79686aec2c5f56865af4cf4d76f07e *R/Cache.R
8924b4fcebc7a600d23bac1605e1bd6e *R/fcts.R
d34099f1e62513e7958a9c23aa1b5ae2 *R/package.R
ae0cd1efc8cd196ceb275a6582c6ca8d *README.md
eca12a72e7f0ee22adffc376fa2498a1 *build/vignette.rds
4f9c73e6a7432ad9ecad92a3354d2f57 *inst/doc/intro.R
7d62db31fe3c8029855d181b4ccbf877 *inst/doc/intro.Rmd
dc5e83a46d94e7dcc4f86be0cced7203 *inst/doc/intro.html
d2e20452ce55a718c52995b9932f175a *man/Cache.Rd
65f35c5d8d4ac5a8a99705b5d00a1c88 *man/fscache-package.Rd
9364262c6c80270db4e0c62719e606f1 *man/load_text_content.Rd
1f458b38dc3429f0691aaf55d6503683 *tests/testthat.R
8e878b510424a593d3dbf1813f9ca76e *tests/testthat/test_010_cache.R
73ae325990a966eaeda69b4544375395 *tests/testthat/test_020_fcts.R
8827a41122a5028b9808c7bf84b9fcf6 *tests/testthat/wrk/ascii.txt
d41d8cd98f00b204e9800998ecf8427e *tests/testthat/wrk/c.txt
d41d8cd98f00b204e9800998ecf8427e *tests/testthat/wrk/d.csv
d41d8cd98f00b204e9800998ecf8427e *tests/testthat/wrk/empty.txt
d41d8cd98f00b204e9800998ecf8427e *tests/testthat/wrk/g.tsv
d41d8cd98f00b204e9800998ecf8427e *tests/testthat/wrk/h.tsv
68e18c53ec391e39666280305fb6d30e *tests/testthat/wrk/latin1.txt
c73a3dd9ffab19da64933d785d17e349 *tests/testthat/wrk/unknown_enc.txt
862ef02899f881b9bbc52f591cc410da *tests/testthat/wrk/utf8.txt
7d62db31fe3c8029855d181b4ccbf877 *vignettes/intro.Rmd
10 changes: 10 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Generated by roxygen2: do not edit by hand

export(Cache)
export(load_text_content)
import(R.utils)
import(R6)
import(chk)
import(lgr)
import(stringi)
import(tools)

0 comments on commit 0210452

Please sign in to comment.