Description Usage Arguments See Also Examples
This is required for cleaning temporary folder during collecting entries to put into project zip package.
1 | rc_adapter_remove_admins(rc_adapter, dir)
|
rc_adapter |
rc adapter object |
dir |
path to the directory to remove administrators from. The folder must exist (type: character) |
Other in extending RSuite with RC adapter: rc_adapter_create_base
,
rc_adapter_get_version
,
rc_adapter_is_under_control
,
rc_adapter_pkg_struct_add
,
rc_adapter_prj_struct_add
1 2 3 4 5 6 7 8 9 10 11 | # create you own RC adapter
rc_adapter_create_own <- function() {
result <- rc_adapter_create_base("Own")
class(result) <- c("rc_adapter_own", class(result))
return(result)
}
#' @export
rc_adapter_remove_admins.rc_adapter_own <- function(rc_adapter, dir) {
# ... unlink RC administrative folders from dir (like .svn or .git) ...
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.