-
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.
* Address devtools::release() * Add infrastructure * Suggest pingr * Suggest tidyr * Refresh NAMESPACE * Address release checks on remote servers * Polish exports
- Loading branch information
1 parent
c760f96
commit c1490cb
Showing
61 changed files
with
539 additions
and
170 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,3 +1,4 @@ | ||
^cran-comments\.md$ | ||
^\.buildignore$ | ||
^appveyor\.yml$ | ||
^.*\.Rproj$ | ||
|
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: fgeo.tool | ||
Title: Manipulate ForestGEO Data | ||
Version: 0.0.0.9005 | ||
Title: Import and Manipulate ForestGEO Data | ||
Version: 1.0.0 | ||
Authors@R: | ||
c(person(given = "Mauro", | ||
family = "Lepore", | ||
|
@@ -18,8 +18,7 @@ Authors@R: | |
role = c("cph", "fnd"), | ||
email = "[email protected]")) | ||
Description: Import and manipulate ForestGEO data | ||
(\url{http://www.forestgeo.si.edu/}) with functions that expect | ||
different classes of ForestGEO data. | ||
(<http://www.forestgeo.si.edu/>). | ||
License: GPL-3 | ||
URL: https://github.com/forestgeo/fgeo.tool | ||
BugReports: https://github.com/forestgeo/fgeo.tool/issues | ||
|
@@ -40,11 +39,12 @@ Imports: | |
Suggests: | ||
covr, | ||
knitr, | ||
pingr, | ||
roxygen2, | ||
spelling, | ||
stringr, | ||
testthat | ||
VignetteBuilder: | ||
knitr | ||
testthat, | ||
tidyr | ||
Remotes: | ||
forestgeo/fgeo.x@*release | ||
Encoding: UTF-8 | ||
|
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,3 @@ | ||
# fgeo.tool 1.0.0 | ||
|
||
* Initial release. |
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,11 @@ | ||
#' Pipe operator | ||
#' | ||
#' See \code{magrittr::\link[magrittr]{\%>\%}} for details. | ||
#' | ||
#' @name %>% | ||
#' @rdname pipe | ||
#' @keywords internal | ||
#' @export | ||
#' @importFrom magrittr %>% | ||
#' @usage lhs \%>\% rhs | ||
NULL |
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,45 @@ | ||
#' Tidy eval helpers | ||
#' | ||
#' @description | ||
#' | ||
#' * \code{\link[rlang]{sym}()} creates a symbol from a string and | ||
#' \code{\link[rlang]{syms}()} creates a list of symbols from a | ||
#' character vector. | ||
#' | ||
#' * \code{\link[rlang]{expr}()} and \code{\link[rlang]{quo}()} quote | ||
#' one expression. `quo()` wraps the quoted expression in a quosure. | ||
#' | ||
#' The plural variants [rlang::exprs()] and | ||
#' \code{\link[rlang]{quos}()} return a list of quoted expressions or | ||
#' quosures. | ||
#' | ||
#' * \code{\link[rlang]{enexpr}()} and \code{\link[rlang]{enquo}()} | ||
#' capture the expression supplied as argument by the user of the | ||
#' current function (`enquo()` wraps this expression in a quosure). | ||
#' | ||
#' \code{\link[rlang]{enexprs}()} and \code{\link[rlang]{enquos}()} | ||
#' capture multiple expressions supplied as arguments, including | ||
#' `...`. | ||
#' | ||
#' `exprs()` is not exported to avoid conflicts with `Biobase::exprs()`, | ||
#' therefore one should always use `rlang::exprs()`. | ||
#' | ||
#' To learn more about tidy eval and how to use these tools, visit | ||
#' <http://rlang.r-lib.org> and the [Metaprogramming | ||
#' section](https://adv-r.hadley.nz/introduction-16.html) of [Advanced | ||
#' R](https://adv-r.hadley.nz). | ||
#' | ||
#' @md | ||
#' @name tidyeval | ||
#' @keywords internal | ||
#' @importFrom rlang quo quos enquo enquos quo_name sym ensym syms | ||
#' ensyms expr exprs enexpr enexprs .data | ||
#' @aliases quo quos enquo enquos quo_name | ||
#' sym ensym syms ensyms | ||
#' expr exprs enexpr enexprs | ||
#' .data | ||
#' @export quo quos enquo enquos quo_name | ||
#' @export sym ensym syms ensyms | ||
#' @export expr enexpr enexprs | ||
#' @export .data | ||
NULL |
File renamed without changes.
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
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,38 @@ | ||
## Test environments | ||
|
||
* local windows 10 x64, R 3.5.2 | ||
* ubuntu 14.04 (on travis-ci), R 3.5.1 | ||
* win-builder (devel and release) | ||
|
||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 3 notes | ||
Platform: Ubuntu Linux 16.04 LTS, R-release, GCC | ||
Build ID: fgeo.tool_1.0.0.tar.gz-0f72e41e51a84fcabc6c05c80881c26d | ||
* New submission | ||
* Unknown, possibly mis-spelled, fields in DESCRIPTION: ‘Remotes’ | ||
* Strong dependencies not in mainstream repositories: fgeo.x | ||
|
||
0 errors | 3 warnings | 0 notes | ||
Platform: Fedora Linux, R-devel, clang, gfortran | ||
Build ID: fgeo.tool_1.0.0.tar.gz-0714fa14002648d29d3d6799b2295e7f | ||
* New submission | ||
* Unknown, possibly mis-spelled, fields in DESCRIPTION: ‘Remotes’ | ||
* Strong dependencies not in mainstream repositories: fgeo.x | ||
|
||
0 errors | 3 warnings | 0 notes | ||
Platform: Windows Server 2008 R2 SP1, R-devel, 32/64 bit | ||
Build ID: fgeo.tool_1.0.0.tar.gz-f58d4077e55b47c9a6c7cf738664c1f4 | ||
* New submission | ||
* Unknown, possibly mis-spelled, fields in DESCRIPTION: ‘Remotes’ | ||
* Strong dependencies not in mainstream repositories: fgeo.x | ||
|
||
0 errors | 3 warnings | 0 notes | ||
using R Under development (unstable) (2019-01-07 r75958) | ||
* New submission | ||
* Unknown, possibly mis-spelled, fields in DESCRIPTION: 'Remotes' | ||
* Strong dependencies not in mainstream repositories: fgeo.x | ||
|
||
## Downstream dependencies | ||
|
||
There are currently no downstream dependencies for this package. |
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.
Oops, something went wrong.