-
Notifications
You must be signed in to change notification settings - Fork 1
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 g6t/fixes
Some fixes
- Loading branch information
Showing
18 changed files
with
187 additions
and
187 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: cloudfs | ||
Title: Streamlined Interface to Interact with Cloud Storage Platforms | ||
Version: 0.1.2.9000 | ||
Version: 0.1.3 | ||
Authors@R: c( | ||
person("Iaroslav", "Domin", email = "[email protected]", role = c("aut", "cre")), | ||
person("Stefan", "Musch", email = "[email protected]", role = c("aut")), | ||
|
@@ -15,7 +15,7 @@ Description: A unified interface for simplifying cloud storage interactions, | |
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 | ||
Imports: | ||
aws.s3, | ||
googledrive, | ||
|
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
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,28 @@ | ||
#' @title Package-wide description of `file` parameter | ||
#' @description A dummy function to be referred by `@inheritParams` for a | ||
#' parameter documentation. | ||
#' | ||
#' @param file Path to a file relative to project folder root. Can contain only | ||
#' letters, digits, '-', '_', '.', spaces and '/' symbols. | ||
#' | ||
#' @keywords internal | ||
doc_file <- function(file) {} | ||
|
||
|
||
|
||
#' @title Package-wide description of `local` parameter | ||
#' @description A dummy function to be referred by `@inheritParams` for a | ||
#' parameter documentation. | ||
#' | ||
#' @param local Logical, defaulting to `FALSE`. If `TRUE`, the function will | ||
#' also create a local copy of the file at the specified path. Note that some | ||
#' writing functions might not overwrite existing files unless explicitly | ||
#' allowed. Typically, such functions have a parameter (often named | ||
#' `overwrite`) to control this behavior. Check the documentation of the | ||
#' writing function used to determine the exact parameter name and pass it | ||
#' through the `...` argument if necessary. Alternatively, you can define an | ||
#' anonymous function for `fun` that calls a writing function with the | ||
#' overwriting option enabled. | ||
#' | ||
#' @keywords internal | ||
doc_local <- function(local) {} |
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
Oops, something went wrong.