Skip to content

Commit

Permalink
update codemeta, add encoding utf8 to description file
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Sep 19, 2018
1 parent fa1976c commit e782ac5
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 28 deletions.
3 changes: 2 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ URL: https://github.com/ropensci/hoardr
BugReports: https://github.com/ropensci/hoardr/issues
VignetteBuilder: knitr
Roxygen: list(markdown = TRUE)
Encodiong: UTF-8
Imports:
R6 (>= 2.2.0),
rappdirs (>= 0.3.1),
Expand All @@ -23,4 +24,4 @@ Suggests:
testthat,
knitr,
rmarkdown
RoxygenNote: 6.0.1
RoxygenNote: 6.1.0
67 changes: 40 additions & 27 deletions codemeta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"@context": ["http://purl.org/codemeta/2.0", "http://schema.org"],
"@context": [
"http://purl.org/codemeta/2.0",
"http://schema.org"
],
"@type": "SoftwareSourceCode",
"identifier": "hoardr",
"description": "Suite of tools for managing cached files, targeting\n use in other R packages. Uses 'rappdirs' for cross-platform paths.\n Provides utilities to manage cache directories, including targeting\n files by path or by key; cached directories can be compressed and\n uncompressed easily to save disk space.",
Expand All @@ -11,10 +14,10 @@
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"version": "3.4.3",
"version": "3.5.1",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 3.4.3 Patched (2018-01-01 r74017)",
"runtimePlatform": "R version 3.5.1 Patched (2018-08-12 r75119)",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
Expand All @@ -29,24 +32,27 @@
"email": "myrmecocystus@gmail.com"
}
],
"maintainer": {
"@type": "Person",
"givenName": "Scott",
"familyName": "Chamberlain",
"email": "myrmecocystus@gmail.com"
},
"maintainer": [
{
"@type": "Person",
"givenName": "Scott",
"familyName": "Chamberlain",
"email": "myrmecocystus@gmail.com"
}
],
"softwareSuggestions": [
{
"@type": "SoftwareApplication",
"identifier": "roxygen2",
"name": "roxygen2",
"version": "6.0.1",
"version": ">= 6.0.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
"sameAs": "https://CRAN.R-project.org/package=roxygen2"
},
{
"@type": "SoftwareApplication",
Expand All @@ -55,9 +61,10 @@
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
"sameAs": "https://CRAN.R-project.org/package=testthat"
},
{
"@type": "SoftwareApplication",
Expand All @@ -66,9 +73,10 @@
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
"sameAs": "https://CRAN.R-project.org/package=knitr"
},
{
"@type": "SoftwareApplication",
Expand All @@ -77,35 +85,38 @@
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
"sameAs": "https://CRAN.R-project.org/package=rmarkdown"
}
],
"softwareRequirements": [
{
"@type": "SoftwareApplication",
"identifier": "R6",
"name": "R6",
"version": "2.2.0",
"version": ">= 2.2.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
"sameAs": "https://CRAN.R-project.org/package=R6"
},
{
"@type": "SoftwareApplication",
"identifier": "rappdirs",
"name": "rappdirs",
"version": "0.3.1",
"version": ">= 0.3.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
"sameAs": "https://CRAN.R-project.org/package=rappdirs"
},
{
"@type": "SoftwareApplication",
Expand All @@ -114,14 +125,16 @@
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Central R Archive Network (CRAN)",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
}
},
"sameAs": "https://CRAN.R-project.org/package=digest"
}
],
"contIntegration": "https://travis-ci.org/ropensci/hoardr",
"developmentStatus": "active",
"releaseNotes": "https://github.com/ropensci/hoardr/blob/master/NEWS.md",
"readme": "https://github.com/ropensci/hoardr/blob/master/README.md",
"fileSize": "8.034KB"
"fileSize": "8.086KB",
"keywords": ["caching", "r", "rstats", "r-package"]
}

0 comments on commit e782ac5

Please sign in to comment.