Skip to content

Commit ece710d

Browse files
committed
add initial documentation
1 parent ac483b6 commit ece710d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+566
-53
lines changed

DESCRIPTION

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ Suggests:
4646
withr
4747
VignetteBuilder:
4848
knitr
49-
Config/Needs/website: tidyverse/tidytemplate
5049
Config/testthat/edition: 3
5150
Config/Needs/cpp4r/cpp_register:
5251
brio,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# cpp4r
1+
# cpp4r <img src="man/figures/logo.svg" align="right" height="139" alt="" />
22

33
<!-- badges: start -->
44
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)

cpp4rtest/DESCRIPTION

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
Package: cpp4rtest
22
Title: A test suite and benchmark code for 'cpp4r'
3-
Version: 0.0.0.9000
3+
Version: 0.1.0
44
Authors@R:
5-
c(person(given = "Jim",
6-
family = "Hester",
7-
role = c("aut", "cre"),
8-
email = "[email protected]",
9-
comment = c(ORCID = "0000-0002-2739-7082")),
10-
person(given = "RStudio",
11-
role = c("cph", "fnd")))
5+
person(
6+
given = "Mauricio",
7+
family = "Vargas Sepulveda",
8+
role = c("aut", "cre"),
9+
email = "[email protected]",
10+
comment = c(ORCID = "0000-0003-1017-7574")
11+
)
1212
Description: Provides a test suite and benchmarking code for the 'cpp4r' package.
1313
License: MIT + file LICENSE
1414
Encoding: UTF-8
1515
LinkingTo: Rcpp, cpp4r, testthat
1616
Suggests:
1717
covr,
18-
testthat,
18+
testthat (>= 3.0.0),
1919
pkgload,
2020
xml2
2121
LazyData: true
2222
Roxygen: list(markdown = TRUE)
2323
RoxygenNote: 7.3.2
24+
Config/testthat/edition: 3

cpp4rtest/tests/testthat.R

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1+
# This file is part of the standard setup for testthat.
2+
# It is recommended that you do not modify it.
3+
#
4+
# Where should you do additional test configuration?
5+
# Learn more about the roles of various files in:
6+
# * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
7+
# * https://testthat.r-lib.org/articles/special-files.html
8+
19
library(testthat)
2-
library(cpp4r)
10+
library(cpp4rtest)
311

412
test_check("cpp4rtest")

man/figures/logo.svg

Lines changed: 168 additions & 0 deletions
Loading
2.78 KB
Loading

pkgdown/favicon/favicon-96x96.png

1.49 KB
Loading

pkgdown/favicon/favicon.ico

14.7 KB
Binary file not shown.

pkgdown/favicon/favicon.svg

Lines changed: 48 additions & 0 deletions
Loading

pkgdown/favicon/site.webmanifest

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "",
3+
"short_name": "",
4+
"icons": [
5+
{
6+
"src": "/web-app-manifest-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png",
9+
"purpose": "maskable"
10+
},
11+
{
12+
"src": "/web-app-manifest-512x512.png",
13+
"sizes": "512x512",
14+
"type": "image/png",
15+
"purpose": "maskable"
16+
}
17+
],
18+
"theme_color": "#ffffff",
19+
"background_color": "#ffffff",
20+
"display": "standalone"
21+
}

0 commit comments

Comments
 (0)