diff --git a/docs/404.html b/docs/404.html index 678f04b..ab6134b 100644 --- a/docs/404.html +++ b/docs/404.html @@ -79,7 +79,7 @@
diff --git a/docs/CODE_OF_CONDUCT.html b/docs/CODE_OF_CONDUCT.html index 77fb2b5..c946e13 100644 --- a/docs/CODE_OF_CONDUCT.html +++ b/docs/CODE_OF_CONDUCT.html @@ -79,7 +79,7 @@ diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index b1e2e96..5cf3b45 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -79,7 +79,7 @@ diff --git a/docs/articles/foghorn.html b/docs/articles/foghorn.html index 7e7bdba..907ebb0 100644 --- a/docs/articles/foghorn.html +++ b/docs/articles/foghorn.html @@ -38,7 +38,7 @@ @@ -83,7 +83,7 @@vignettes/foghorn.Rmd
foghorn.Rmd
summary_cran_results()
provides you with a graphical summary of the results of the CRAN checks. The number in parenthesis after the name of the package indicates the number of platforms used by CRAN that produced this result.
## Graphical interface summary_cran_results(email = "francois.michonneau@gmail.com")
## ✔ All clear for foghorn, phylobase, riceware, rotl!
-## ★ Package with notes on CRAN:
-## - rncl (2)
+## ✔ All clear for foghorn, riceware, rotl!
+## ★ Packages with notes on CRAN:
+## - phylobase (1)
+## - rncl (3)
summary_cran_results()
is actually an alias of summary(cran_results())
, meaning that you can call cran_results()
directly if you want to easily access the underlying data for the results of the CRAN checks. These results are stored in a tibble.
## Results as a tibble cran_results(email = "francois.michonneau@gmail.com")
## # A tibble: 5 x 7
## package error fail warn note ok has_other_issues
## <chr> <int> <int> <int> <int> <int> <lgl>
-## 1 foghorn 0 0 0 0 11 FALSE
-## 2 phylobase 0 0 0 0 11 FALSE
-## 3 riceware 0 0 0 0 11 FALSE
-## 4 rncl 0 0 0 2 9 FALSE
-## 5 rotl 0 0 0 0 11 FALSE
+## 1 foghorn 0 0 0 0 12 FALSE
+## 2 phylobase 0 0 0 1 11 FALSE
+## 3 riceware 0 0 0 0 12 FALSE
+## 4 rncl 0 0 0 3 9 FALSE
+## 5 rotl 0 0 0 0 12 FALSE
In addition of your own packages, you can also check the results for any other packages that might be of interest to you:
## either by themselves summary_cran_results(pkg = c("ggplot2", "dplyr"))
## ★ Packages with notes on CRAN:
-## - dplyr (4)
-## - ggplot2 (4)
+## - dplyr (5)
+## - ggplot2 (5)
## ◉ Package with other issues on CRAN:
## - dplyr
cran_results(pkg = c("ggplot2", "dplyr"))
## # A tibble: 2 x 7
## package error fail warn note ok has_other_issues
## <chr> <int> <int> <int> <int> <int> <lgl>
-## 1 dplyr 0 0 0 4 7 TRUE
-## 2 ggplot2 0 0 0 4 7 FALSE
+## 1 dplyr 0 0 0 5 7 TRUE
+## 2 ggplot2 0 0 0 5 6 FALSE
## or by combining them with email addresses summary_cran_results(email = "francois.michonneau@gmail.com", pkg = c("mregions", "ridigbio"))
## ✔ All clear for foghorn, mregions, phylobase, riceware, ridigbio, rotl!
-## ★ Package with notes on CRAN:
-## - rncl (2)
+## ✔ All clear for foghorn, mregions, riceware, ridigbio, rotl!
+## ★ Packages with notes on CRAN:
+## - phylobase (1)
+## - rncl (3)
cran_results(email = "francois.michonneau@gmail.com", pkg = c("mregions", "ridigbio"))
## # A tibble: 7 x 7
## package error fail warn note ok has_other_issues
## <chr> <int> <int> <int> <int> <int> <lgl>
-## 1 foghorn 0 0 0 0 11 FALSE
-## 2 mregions 0 0 0 0 11 FALSE
-## 3 phylobase 0 0 0 0 11 FALSE
-## 4 riceware 0 0 0 0 11 FALSE
-## 5 ridigbio 0 0 0 0 11 FALSE
-## 6 rncl 0 0 0 2 9 FALSE
-## 7 rotl 0 0 0 0 11 FALSE
+## 1 foghorn 0 0 0 0 12 FALSE
+## 2 mregions 0 0 0 0 12 FALSE
+## 3 phylobase 0 0 0 1 11 FALSE
+## 4 riceware 0 0 0 0 12 FALSE
+## 5 ridigbio 0 0 0 0 12 FALSE
+## 6 rncl 0 0 0 3 9 FALSE
+## 7 rotl 0 0 0 0 12 FALSE
You can inspect the logs for the check results using summary_cran_details(pkg)
(or summary(cran_details(pkg))
), while visit_cran_check(pkg)
takes you directly to the CRAN webpage.
tidyr_details <- cran_details(pkg = "tidyr") tidyr_details
## # A tibble: 1 x 7
## package version result check flavors n_flavors message
## <chr> <chr> <chr> <chr> <chr> <dbl> <chr>
-## 1 tidyr 1.1.0 NOTE data for … r-devel-linux-x86_6… 4 " Note: …
+## 1 tidyr 1.1.0 NOTE data for … r-devel-linux-x86_6… 5 " Note: …
summary(tidyr_details)
## ★ tidyr - note: data for non-ASCII characters
## ❯ r-devel-linux-x86_64-fedora-clang
## ❯ r-devel-linux-x86_64-fedora-gcc
## ❯ r-patched-solaris-x86
+## ❯ r-release-macos-x86_64
## ❯ r-oldrel-macos-x86_64
##
## Note: found 24 marked UTF-8 strings
diff --git a/docs/articles/index.html b/docs/articles/index.html
index 2d9558d..3b144f6 100644
--- a/docs/articles/index.html
+++ b/docs/articles/index.html
@@ -79,7 +79,7 @@
diff --git a/docs/authors.html b/docs/authors.html
index 1d47b3c..7eefd09 100644
--- a/docs/authors.html
+++ b/docs/authors.html
@@ -79,7 +79,7 @@
diff --git a/docs/index.html b/docs/index.html
index e6381ab..313b74b 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -39,7 +39,7 @@
diff --git a/docs/news/index.html b/docs/news/index.html
index 3cabbcf..2f06b66 100644
--- a/docs/news/index.html
+++ b/docs/news/index.html
@@ -79,7 +79,7 @@
diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml
index 1275382..0bf7093 100644
--- a/docs/pkgdown.yml
+++ b/docs/pkgdown.yml
@@ -3,5 +3,5 @@ pkgdown: 1.5.1
pkgdown_sha: ~
articles:
foghorn: foghorn.html
-last_built: 2020-07-22T07:38Z
+last_built: 2020-07-30T15:25Z
diff --git a/docs/reference/check_cran_results.html b/docs/reference/check_cran_results.html
index b0c4b11..301a279 100644
--- a/docs/reference/check_cran_results.html
+++ b/docs/reference/check_cran_results.html
@@ -80,7 +80,7 @@
diff --git a/docs/reference/cran_details.html b/docs/reference/cran_details.html
index f8ca078..1ef09e6 100644
--- a/docs/reference/cran_details.html
+++ b/docs/reference/cran_details.html
@@ -81,7 +81,7 @@
@@ -206,9 +206,9 @@ protocol either https
(default) or http
.
overwrite when FALSE
(default), if the file exists in
-dest
then it will not be downloaded again.
-When TRUE
the file gets downloaded everytime
-it's needed.
dest
then it will not be downloaded again. When
+TRUE
the file gets downloaded every time it's
+needed.
... additional arguments that will be passed to
GET
function to control how
the file will be downloaded.
protocol either https
(default) or http
.
overwrite when FALSE
(default), if the file exists in
-dest
then it will not be downloaded again.
-When TRUE
the file gets downloaded everytime
-it's needed.
dest
then it will not be downloaded again. When
+TRUE
the file gets downloaded every time it's
+needed.
... additional arguments that will be passed to
GET
function to control how
the file will be downloaded.
n_cran_flavors( use_cache = getOption("foghorn.use_cache", TRUE), force_default = getOption("foghorn.force_default", FALSE), - n_flavors = getOption("foghorn.n_flavors", 11L) + n_flavors = getOption("foghorn.n_flavors", 12L) )
What is the default number of flavors? (default: 11L
)
What is the default number of flavors? (default: 12L
)