Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
maelle committed May 5, 2020
1 parent f628774 commit 3846c1c
Show file tree
Hide file tree
Showing 5 changed files with 1,280 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.Rhistory
.RData
.Rproj.user
static/
content/*.html
public/
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ name = "Shell"
key = "json"
name = "JSON"

ignoreFiles = ["\\.Rmd$", "_files$", "_cache$", "/content/*\\.html"]
ignoreFiles = ["\\.Rmd$", "\\.html$"]
23 changes: 23 additions & 0 deletions content/maintainers.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ knitr::knit_hooks$set(

# Maintainers

## Maintainers

Get all maintainers.

Default limit of 10.

```{r shell="shell"}
args <- c("https://cranchecks.info/maintainers/")
jqr::jq(
Expand All @@ -70,3 +76,20 @@ jqr::jq(
```{r}
cchecks::cch_maintainers()
```

## Maintainers by email

```{r shell="shell"}
args <- c("https://cranchecks.info/maintainers/csardi.gabor_at_gmail.com")
jqr::jq(
processx::run(
"curl",
args
)$stdout,
"."
)
```

```{r}
cchecks::cch_maintainers(x = "csardi.gabor_at_gmail.com")
```
Loading

0 comments on commit 3846c1c

Please sign in to comment.