pac_namespace {pacs} | R Documentation |
package NAMESPACE file
Description
CRAN package NAMESPACE file taken locally or remotely from GITHUB CRAN mirror or CRAN website. By default works for the newest package version.
Usage
pac_namespace(
pac,
version = NULL,
at = NULL,
local = FALSE,
lib.loc = .libPaths(),
repos = "https://cran.rstudio.com/"
)
Arguments
pac |
|
version |
|
at |
|
local |
|
lib.loc |
|
repos |
|
Value
list
with names proper for NAMESPACE file, the same as format as returned by base::parseNamespaceFile
.
Note
Results are cached for 30 minutes with memoise
package.
This function is mainly built under source code from base::parseNamespaceFile
.
Examples
## Not run:
pacs::pac_namespace("dplyr", version = "0.8.0")
pacs::pac_namespace("dplyr", at = as.Date("2019-02-01"))
pacs::pac_namespace("memoise", local = TRUE)
## End(Not run)