Skip to content

Commit 7834c26

Browse files
committed
start chaoss models vignette for #124
1 parent fce1bd8 commit 7834c26

File tree

4 files changed

+56
-10
lines changed

4 files changed

+56
-10
lines changed

DESCRIPTION

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: repometrics
22
Title: Metrics for Your Code Repository
3-
Version: 0.1.6.125
3+
Version: 0.1.6.126
44
Authors@R:
55
person("Mark", "Padgham", , "mark.padgham@email.com", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265"))
@@ -28,9 +28,11 @@ Suggests:
2828
desc,
2929
httptest2,
3030
jsonlite,
31+
knitr,
3132
pkgmatch,
3233
quarto,
3334
readr,
35+
rmarkdown,
3436
testthat (>= 3.0.0),
3537
tidyr,
3638
withr,
@@ -43,3 +45,4 @@ Encoding: UTF-8
4345
Language: en-GB
4446
Roxygen: list(markdown = TRUE)
4547
RoxygenNote: 7.3.2
48+
VignetteBuilder: knitr

codemeta.json

+31-9
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"codeRepository": "https://github.com/ropensci-review-tools/repometrics",
99
"issueTracker": "https://github.com/ropensci-review-tools/repometrics/issues",
1010
"license": "https://spdx.org/licenses/GPL-3.0",
11-
"version": "0.1.6.125",
11+
"version": "0.1.6.126",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",
1515
"url": "https://r-project.org"
1616
},
17-
"runtimePlatform": "R version 4.4.2 (2024-10-31)",
17+
"runtimePlatform": "R version 4.4.3 (2025-02-28)",
1818
"author": [
1919
{
2020
"@type": "Person",
@@ -82,6 +82,18 @@
8282
},
8383
"sameAs": "https://CRAN.R-project.org/package=jsonlite"
8484
},
85+
{
86+
"@type": "SoftwareApplication",
87+
"identifier": "knitr",
88+
"name": "knitr",
89+
"provider": {
90+
"@id": "https://cran.r-project.org",
91+
"@type": "Organization",
92+
"name": "Comprehensive R Archive Network (CRAN)",
93+
"url": "https://cran.r-project.org"
94+
},
95+
"sameAs": "https://CRAN.R-project.org/package=knitr"
96+
},
8597
{
8698
"@type": "SoftwareApplication",
8799
"identifier": "pkgmatch",
@@ -112,6 +124,18 @@
112124
},
113125
"sameAs": "https://CRAN.R-project.org/package=readr"
114126
},
127+
{
128+
"@type": "SoftwareApplication",
129+
"identifier": "rmarkdown",
130+
"name": "rmarkdown",
131+
"provider": {
132+
"@id": "https://cran.r-project.org",
133+
"@type": "Organization",
134+
"name": "Comprehensive R Archive Network (CRAN)",
135+
"url": "https://cran.r-project.org"
136+
},
137+
"sameAs": "https://CRAN.R-project.org/package=rmarkdown"
138+
},
115139
{
116140
"@type": "SoftwareApplication",
117141
"identifier": "testthat",
@@ -295,13 +319,11 @@
295319
"name": "pkgstats",
296320
"sameAs": "https://github.com/ropensci-review-tools/pkgstats"
297321
},
298-
"SystemRequirements": {}
322+
"SystemRequirements": null
299323
},
300-
"fileSize": "13358.074KB",
324+
"fileSize": "24734.014KB",
301325
"readme": "https://github.com/ropensci-review-tools/repometrics/blob/main/README.md",
302-
"contIntegration": [
303-
"https://github.com/ropensci-review-tools/repometrics/actions?query=workflow%3AR-CMD-check",
304-
"https://app.codecov.io/gh/ropensci-review-tools/repometrics"
305-
],
306-
"developmentStatus": "https://www.repostatus.org/#active"
326+
"contIntegration": ["https://github.com/ropensci-review-tools/repometrics/actions?query=workflow%3AR-CMD-check", "https://app.codecov.io/gh/ropensci-review-tools/repometrics"],
327+
"developmentStatus": "https://www.repostatus.org/#active",
328+
"keywords": ["dashboard", "r", "software-metrics"]
307329
}

vignettes/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.html
2+
*.R

vignettes/chaoss-models.Rmd

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "CHAOSS models"
3+
output: rmarkdown::html_vignette
4+
vignette: >
5+
%\VignetteIndexEntry{chaoss-models}
6+
%\VignetteEngine{knitr::rmarkdown}
7+
%\VignetteEncoding{UTF-8}
8+
---
9+
10+
```{r, include = FALSE}
11+
knitr::opts_chunk$set (
12+
collapse = TRUE,
13+
comment = "#>"
14+
)
15+
```
16+
17+
```{r setup}
18+
library (repometrics)
19+
```

0 commit comments

Comments
 (0)