testthat::test_check()
failed when full path for cache dir wastempdir()
. Replacedtempdir()
with a full path that works (#23).
- New maintainer (#17).
- Important fix:
HoardClient
, called byhoardr()
function, was storing the cache path in an environment inside the R6 class. If multiple instances ofHoardClient
exist in the same R session, the cache path for any one then affects all others. Fixed by storing as a private variable int he R6 class instead of in an environment (#14).
- Gains new method on the
HoardClient
object to check if one or more files exist, returning a data.frame (#10). cache_path_set()
method onHoardClient
gains new parameterfull_path
to make the base cache path directly with a full path rather than using the three other parameters (path
,type
, andprefix
) (#12).
- Compliance with CRAN policies about writing to users disk (#6).
- Improved documentation (#7).
- Change
key()
andkeys()
to usefile=TRUE
(#8). - Fix R6 import warning (#5).
- released to CRAN