Skip to content

Commit 062ecd9

Browse files
committed
Generate author list from DESCRIPT ref #231
1 parent 4150de5 commit 062ecd9

3 files changed

Lines changed: 16 additions & 6 deletions

File tree

DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ Suggests:
4242
covr,
4343
knitr,
4444
rmarkdown,
45-
readr (>= 1.2.1)
45+
readr (>= 1.2.1),
46+
desc
4647
License: GPL-3
4748
RoxygenNote: 7.3.2
4849
Roxygen: list(markdown = TRUE)

README.Rmd

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,16 @@ read_ods("mtcars.ods", sheet = "plant", range = "A1:B10")
105105

106106
The logo of readODS is a remix of LibreOffice Calc v6.1 icon created by the Document Foundation. The original LibreOffice logo is licensed under the [Creative Commons Attribution Share-Alike 3.0 Unported License](https://wiki.documentfoundation.org/File:LibO6_MIME.svg). readODS is not a product of the Document Foundation. The logo of readODS is licensed under the [Creative Commons Attribution Share-Alike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/).
107107

108-
The creator of this package is Gerrit-Jan Schutten. The current maintainer is Chung-hong Chan. This package benefits from contributions by Peter Brohan, Thomas J. Leeper, John Foster, Sergio Oller, Jim Hester, Stephen Watts, Arthur Katossky, Stas Malavin, Duncan Garmonsway, Mehrad Mahmoudian, Matt Kerlogue, Detlef Steuer, Michal Lauer, and Till Straube.
108+
```{r, echo = FALSE}
109+
.f <- function(person) {
110+
if (is.null(person$email)) {
111+
return(TRUE)
112+
}
113+
!person$email %in% c("phonixor@gmail.com", "chainsawtiney@gmail.com")
114+
}
115+
```
116+
117+
The creator of this package is Gerrit-Jan Schutten. The current maintainer is Chung-hong Chan. This package benefits from contributions by `r Filter(.f, desc::description$new()$get_authors()) |> vapply(function(x) format(x, , include = c("given", "family")), FUN.VALUE = character(1)) |> paste(collapse = ", ")`.
109118

110119
This package emulates the behaviours of `readxl::read_xlsx`, `writexl::write_xlsx` and `xlsx::write.xlsx`.
111120

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,10 @@ Unported License](https://creativecommons.org/licenses/by-sa/3.0/).
194194

195195
The creator of this package is Gerrit-Jan Schutten. The current
196196
maintainer is Chung-hong Chan. This package benefits from contributions
197-
by Peter Brohan, Thomas J. Leeper, John Foster, Sergio Oller, Jim
198-
Hester, Stephen Watts, Arthur Katossky, Stas Malavin, Duncan Garmonsway,
199-
Mehrad Mahmoudian, Matt Kerlogue, Detlef Steuer, Michal Lauer, and Till
200-
Straube.
197+
by Peter Brohan, Detlef Steuer, Thomas J. Leeper, John Foster, Sergio
198+
Oller, Jim Hester, Stephen Watts, Arthur Katossky, Stas Malavin, Duncan
199+
Garmonsway, Mehrad Mahmoudian, Matt Kerlogue, Michal Lauer, Till
200+
Straube, Mauricio Vargas Sepulveda, Marcin Kalicinski.
201201

202202
This package emulates the behaviours of `readxl::read_xlsx`,
203203
`writexl::write_xlsx` and `xlsx::write.xlsx`.

0 commit comments

Comments
 (0)