-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from databio/dev
v 0.3 release
- Loading branch information
Showing
16 changed files
with
152 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
# Change log | ||
All notable changes to this project will be documented in this file. | ||
|
||
## [0.2.1] -- 2017-07-30 | ||
## [0.3.0] -- 2017-08-21 | ||
|
||
### Added | ||
- Switched default cache dir to tempdir() | ||
- changed availCaches() to listCaches() | ||
- changes cache building to happen in parent.frame(), so that any loaded | ||
packages are available for cache building | ||
|
||
- Added examples. | ||
|
||
## [0.2.0] -- 2017-07-30 | ||
## [0.2.1] -- 2017-07-30 | ||
|
||
### Added | ||
- Added examples | ||
|
||
## [0.2.0] -- 2017-07-30 | ||
|
||
- support for batchjobs parallel processing | ||
- docs, prep for submission to CRAN | ||
|
||
## [0.0.1] | ||
|
||
Long-term stable version | ||
- Long-term stable version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#' Show available caches. | ||
#' | ||
#' Lists any cache files in the cache directory. | ||
#' | ||
#' @param cacheSubDir Optional parameter to specify a subdirectory of the cache folder. | ||
#' @return \code{character} vector in which each element is the path to a file that | ||
#' represents an available cache (within \code{getOption("RCACHE.DIR")}) | ||
#' @export | ||
#' @example | ||
#' R/examples/example.R | ||
listCaches = function(cacheSubDir="") { | ||
list.files(paste0(getOption("RCACHE.DIR"), cacheSubDir)) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.