Skip to content

Commit 4f9e4b7

Browse files
DiogoRibeiro7github-actions[bot]
authored andcommitted
chore(renv): initialize renv and add lockfile
1 parent a991d41 commit 4f9e4b7

File tree

6 files changed

+1433
-0
lines changed

6 files changed

+1433
-0
lines changed

.Rbuildignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
^renv$
2+
^renv\.lock$
13
^README\.md$
24
^\.gitignore$
35
^\.Rproj\.user$
@@ -26,3 +28,6 @@
2628
^CODE_OF_CONDUCT\.md$
2729
^CHANGELOG\.md$
2830
^\.Renviron$
31+
^renv($|/)
32+
^renv\.lock$
33+
^\.Rprofile$

.Rprofile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
source("renv/activate.R")

renv.lock

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"R": {
3+
"Version": "4.5.1",
4+
"Repositories": [
5+
{
6+
"Name": "CRAN",
7+
"URL": "https://cran.rstudio.com"
8+
}
9+
]
10+
},
11+
"Packages": {
12+
"renv": {
13+
"Package": "renv",
14+
"Version": "1.1.5",
15+
"Source": "Repository",
16+
"Type": "Package",
17+
"Title": "Project Environments",
18+
"Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
19+
"Description": "A dependency management toolkit for R. Using 'renv', you can create and manage project-local R libraries, save the state of these libraries to a 'lockfile', and later restore your library as required. Together, these tools can help make your projects more isolated, portable, and reproducible.",
20+
"License": "MIT + file LICENSE",
21+
"URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv",
22+
"BugReports": "https://github.com/rstudio/renv/issues",
23+
"Imports": [
24+
"utils"
25+
],
26+
"Suggests": [
27+
"BiocManager",
28+
"cli",
29+
"compiler",
30+
"covr",
31+
"cpp11",
32+
"devtools",
33+
"generics",
34+
"gitcreds",
35+
"jsonlite",
36+
"jsonvalidate",
37+
"knitr",
38+
"miniUI",
39+
"modules",
40+
"packrat",
41+
"pak",
42+
"R6",
43+
"remotes",
44+
"reticulate",
45+
"rmarkdown",
46+
"rstudioapi",
47+
"shiny",
48+
"testthat",
49+
"uuid",
50+
"waldo",
51+
"yaml",
52+
"webfakes"
53+
],
54+
"Encoding": "UTF-8",
55+
"RoxygenNote": "7.3.2",
56+
"VignetteBuilder": "knitr",
57+
"Config/Needs/website": "tidyverse/tidytemplate",
58+
"Config/testthat/edition": "3",
59+
"Config/testthat/parallel": "true",
60+
"Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes",
61+
"NeedsCompilation": "no",
62+
"Author": "Kevin Ushey [aut, cre] (ORCID: <https://orcid.org/0000-0003-2880-7407>), Hadley Wickham [aut] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]",
63+
"Maintainer": "Kevin Ushey <[email protected]>",
64+
"Repository": "CRAN"
65+
}
66+
}
67+
}

renv/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
library/
2+
local/
3+
cellar/
4+
lock/
5+
python/
6+
sandbox/
7+
staging/

0 commit comments

Comments
 (0)