Skip to content

Commit

Permalink
Re-build codemeta.json
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 14, 2022
1 parent 171bc32 commit 94372d7
Showing 1 changed file with 21 additions and 29 deletions.
50 changes: 21 additions & 29 deletions codemeta.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
{
"@context": [
"https://doi.org/10.5063/schema/codemeta-2.0",
"http://schema.org"
],
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"identifier": "dittodb",
"description": "Testing and documenting code that communicates with remote databases can be painful. Although the interaction with R is usually relatively simple (e.g. data(frames) passed to and from a database), because they rely on a separate service and the data there, testing them can be difficult to set up, unsustainable in a continuous integration environment, or impossible without replicating an entire production cluster. This package addresses that by allowing you to make recordings from your database interactions and then play them back while testing (or in other contexts) all without needing to spin up or have access to the database your code would typically connect to.",
"name": "dittodb: A Test Environment for Database Requests",
"relatedLink": ["https://dittodb.jonkeane.com/", "https://CRAN.R-project.org/package=dittodb"],
"codeRepository": "https://github.com/ropensci/dittodb",
"relatedLink": [
"https://dittodb.jonkeane.com/",
"https://CRAN.R-project.org/package=dittodb"
],
"issueTracker": "https://github.com/ropensci/dittodb/issues",
"license": "https://spdx.org/licenses/Apache-2.0",
"version": "0.1.3.9000",
Expand All @@ -21,6 +15,12 @@
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.1.2 (2021-11-01)",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"author": [
{
"@type": "Person",
Expand All @@ -37,9 +37,6 @@
"@id": "https://orcid.org/0000-0003-1017-7574"
}
],
"contributor": {},
"copyrightHolder": {},
"funder": {},
"maintainer": [
{
"@type": "Person",
Expand Down Expand Up @@ -243,14 +240,14 @@
"sameAs": "https://CRAN.R-project.org/package=lintr"
}
],
"softwareRequirements": [
{
"softwareRequirements": {
"1": {
"@type": "SoftwareApplication",
"identifier": "R",
"name": "R",
"version": ">= 3.3.0"
},
{
"2": {
"@type": "SoftwareApplication",
"identifier": "DBI",
"name": "DBI",
Expand All @@ -262,7 +259,7 @@
},
"sameAs": "https://CRAN.R-project.org/package=DBI"
},
{
"3": {
"@type": "SoftwareApplication",
"identifier": "digest",
"name": "digest",
Expand All @@ -274,7 +271,7 @@
},
"sameAs": "https://CRAN.R-project.org/package=digest"
},
{
"4": {
"@type": "SoftwareApplication",
"identifier": "glue",
"name": "glue",
Expand All @@ -286,17 +283,17 @@
},
"sameAs": "https://CRAN.R-project.org/package=glue"
},
{
"5": {
"@type": "SoftwareApplication",
"identifier": "methods",
"name": "methods"
},
{
"6": {
"@type": "SoftwareApplication",
"identifier": "utils",
"name": "utils"
},
{
"7": {
"@type": "SoftwareApplication",
"identifier": "lifecycle",
"name": "lifecycle",
Expand All @@ -307,17 +304,12 @@
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=lifecycle"
}
],
},
"SystemRequirements": null
},
"fileSize": "729.576KB",
"releaseNotes": "https://github.com/ropensci/dittodb/blob/main/NEWS.md",
"readme": "https://github.com/ropensci/dittodb/blob/main/README.md",
"fileSize": "729.594KB",
"contIntegration": ["https://github.com/ropensci/dittodb/actions?workflow=check-macOS", "https://github.com/ropensci/dittodb/actions?workflow=check-linux", "https://github.com/ropensci/dittodb/actions?workflow=check-windows", "https://codecov.io/gh/ropensci/dittodb?branch=main"],
"developmentStatus": "https://www.tidyverse.org/lifecycle/#maturing",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
"developmentStatus": "https://www.tidyverse.org/lifecycle/#maturing"
}

0 comments on commit 94372d7

Please sign in to comment.