-
Notifications
You must be signed in to change notification settings - Fork 761
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
^\.Rproj\.user$ | ||
^\.travis\.yml$ | ||
^NEWS.md$ | ||
^rcmd-notes.md$ |
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,25 @@ | ||
* checking dependencies in R code ... NOTE | ||
Missing or unexported object: ‘roxygen2::clear_caches’ | ||
See the information on DESCRIPTION files in the chapter ‘Creating R | ||
packages’ of the ‘Writing R Extensions’ manual. | ||
|
||
checking R code for possible problems ... NOTE | ||
document_roxygen2: no visible binding for global variable ‘parse.file’ | ||
|
||
Or similar: devtools now conditionally supports two versions of roxygen2, | ||
so some functions aren't found and some arguments don't match | ||
|
||
* checking R code for possible problems ... NOTE | ||
Found the following calls to attach(): | ||
File ‘devtools/R/package-env.r’: | ||
attach(NULL, name = pkg_env_name(pkg)) | ||
|
||
This is needed because devtools simulated package loading, and hence | ||
needs to attach environments to the search path. | ||
|
||
* There are ::: calls to the package's namespace in its code. A package | ||
almost never needs to use ::: for its own objects: ‘run_example’ | ||
|
||
This is needed because that function actually generates an external | ||
file that is run in a fresh R session. | ||
|