-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maëlle Salmon
committed
May 3, 2018
1 parent
67752ef
commit 3a914d2
Showing
21 changed files
with
546 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,79 @@ | ||
Package: essurvey | ||
Title: Download Data from the European Social Survey on the Fly | ||
Version: 1.0.0 | ||
Authors@R: c( | ||
person("Jorge", "Cimentada", email = "[email protected]", role = c("aut", "cre")), | ||
person("Thomas", "Leeper", role = "rev", comment = "Thomas reviewed the package for rOpensci,see https://github.com/ropensci/onboarding/issues/201"), | ||
person("Nujcharee", "Haswell", role = "rev", comment = "Nujcharee reviewed the package for rOpensci, see https://github.com/ropensci/onboarding/issues/201") | ||
) | ||
BugReports: https://github.com/ropensci/essurvey/issues | ||
Description: Download data from the European Social Survey directly from their website <http://www.europeansocialsurvey.org/>. There are two families of functions that allow you to download and interactively check all countries and rounds available. | ||
Depends: R (>= 3.4.0) | ||
License: MIT + file LICENSE | ||
URL: http://surveillance.R-Forge.R-project.org/ | ||
|
||
Package: codemetar | ||
Type: Package | ||
Title: Generate 'CodeMeta' Metadata for R Packages | ||
Version: 0.1.6 | ||
Authors@R: | ||
c(person(given = "Carl", | ||
family = "Boettiger", | ||
role = c("aut", "cre", "cph"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-1642-628X")), | ||
person(given = "Anna", | ||
family = "Krystalli", | ||
role = c("rev", "ctb"), | ||
comment = c(ORCID = "0000-0002-2378-4915")), | ||
person(given = "Toph", | ||
family = "Allen", | ||
role = "rev", | ||
comment = c(ORCID = "0000-0003-4580-091X")), | ||
person(given = "Maëlle", | ||
family = "Salmon", | ||
role = c("ctb", "aut"), | ||
comment = c(ORCID = "0000-0002-2815-0399")), | ||
person(given = "rOpenSci", | ||
role = "fnd", | ||
comment = "https://ropensci.org/"), | ||
person(given = "Katrin", | ||
family = "Leinweber", | ||
role = "ctb"), | ||
person(given = "Noam", | ||
family = "Ross", | ||
role = "ctb"), | ||
person(given = "Arfon", | ||
family = "Smith", | ||
role = "ctb")) | ||
Description: The 'Codemeta' Project defines a 'JSON-LD' format for describing | ||
software metadata, as detailed at <https://codemeta.github.io>. This package | ||
provides utilities to generate, parse, and modify 'codemeta.json' files | ||
automatically for R packages, as well as tools and examples for working with | ||
'codemeta.json' 'JSON-LD' more generally. | ||
License: GPL-3 | ||
URL: http://fakepackage.R-Forge.R-project.org/ | ||
BugReports: https://github.com/ropensci/codemetar/issues | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 6.0.1 | ||
RoxygenNote: 6.0.1.9000 | ||
Depends: R (>= 3.0.0) | ||
Imports: | ||
xml2, | ||
httr, | ||
jsonlite (>= 1.3), | ||
jsonld, | ||
git2r, | ||
devtools, | ||
memoise, | ||
methods, | ||
stats, | ||
stringi, | ||
readr, | ||
desc, | ||
usethis, | ||
whisker, | ||
tibble, | ||
crul, | ||
gh, | ||
stringr, | ||
haven, | ||
rvest, | ||
tibble | ||
sessioninfo, | ||
purrr | ||
Suggests: | ||
testthat, | ||
jsonvalidate, | ||
covr, | ||
knitr, | ||
rmarkdown, | ||
covr | ||
magrittr, | ||
xml2, | ||
dplyr (>= 0.7.0), | ||
printr | ||
VignetteBuilder: knitr | ||
X-schema.org-keywords: metadata, codemeta, ropensci, citation, credit, linked-data | ||
X-schema.org-isPartOf: https://ropensci.org |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
Package: codemetar | ||
Type: Package | ||
Title: Generate 'CodeMeta' Metadata for R Packages | ||
Version: 0.1.6 | ||
Authors@R: | ||
c(person(given = "Carl", | ||
family = "Boettiger", | ||
role = c("aut", "cre", "cph"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-1642-628X")), | ||
person(given = "Anna", | ||
family = "Krystalli", | ||
role = c("rev", "ctb"), | ||
comment = c(ORCID = "0000-0002-2378-4915")), | ||
person(given = "Toph", | ||
family = "Allen", | ||
role = "rev", | ||
comment = c(ORCID = "0000-0003-4580-091X")), | ||
person(given = "Maëlle", | ||
family = "Salmon", | ||
role = c("ctb", "aut"), | ||
comment = c(ORCID = "0000-0002-2815-0399")), | ||
person(given = "rOpenSci", | ||
role = "fnd", | ||
comment = "https://ropensci.org/"), | ||
person(given = "Katrin", | ||
family = "Leinweber", | ||
role = "ctb"), | ||
person(given = "Noam", | ||
family = "Ross", | ||
role = "ctb"), | ||
person(given = "Arfon", | ||
family = "Smith", | ||
role = "ctb")) | ||
Description: The 'Codemeta' Project defines a 'JSON-LD' format for describing | ||
software metadata, as detailed at <https://codemeta.github.io>. This package | ||
provides utilities to generate, parse, and modify 'codemeta.json' files | ||
automatically for R packages, as well as tools and examples for working with | ||
'codemeta.json' 'JSON-LD' more generally. | ||
License: GPL-3 | ||
URL: https://github.com/ropensci/codemetar, https://ropensci.github.io/codemetar | ||
BugReports: https://github.com/ropensci/codemetar/issues | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 6.0.1.9000 | ||
Depends: R (>= 3.0.0) | ||
Imports: | ||
jsonlite (>= 1.3), | ||
jsonld, | ||
git2r, | ||
devtools, | ||
memoise, | ||
methods, | ||
stats, | ||
stringi, | ||
readr, | ||
desc, | ||
usethis, | ||
whisker, | ||
tibble, | ||
crul, | ||
gh, | ||
stringr, | ||
sessioninfo, | ||
purrr | ||
Suggests: | ||
testthat, | ||
jsonvalidate, | ||
covr, | ||
knitr, | ||
rmarkdown, | ||
magrittr, | ||
xml2, | ||
dplyr (>= 0.7.0), | ||
printr | ||
VignetteBuilder: knitr | ||
X-schema.org-keywords: metadata, codemeta, ropensci, citation, credit, linked-data | ||
X-schema.org-isPartOf: https://ropensci.org |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,77 @@ | ||
Package: essurvey | ||
Title: Download Data from the European Social Survey on the Fly | ||
Version: 1.0.0 | ||
Authors@R: c( | ||
person("Jorge", "Cimentada", email = "[email protected]", role = c("aut", "cre")), | ||
person("Thomas", "Leeper", role = "rev", comment = "Thomas reviewed the package for rOpensci,see https://github.com/ropensci/onboarding/issues/201"), | ||
person("Nujcharee", "Haswell", role = "rev", comment = "Nujcharee reviewed the package for rOpensci, see https://github.com/ropensci/onboarding/issues/201") | ||
) | ||
BugReports: https://github.com/ropensci/essurvey/issues | ||
Description: Download data from the European Social Survey directly from their website <http://www.europeansocialsurvey.org/>. There are two families of functions that allow you to download and interactively check all countries and rounds available. | ||
Depends: R (>= 3.4.0) | ||
License: MIT + file LICENSE | ||
Package: codemetar | ||
Type: Package | ||
Title: Generate 'CodeMeta' Metadata for R Packages | ||
Version: 0.1.6 | ||
Authors@R: | ||
c(person(given = "Carl", | ||
family = "Boettiger", | ||
role = c("aut", "cre", "cph"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-1642-628X")), | ||
person(given = "Anna", | ||
family = "Krystalli", | ||
role = c("rev", "ctb"), | ||
comment = c(ORCID = "0000-0002-2378-4915")), | ||
person(given = "Toph", | ||
family = "Allen", | ||
role = "rev", | ||
comment = c(ORCID = "0000-0003-4580-091X")), | ||
person(given = "Maëlle", | ||
family = "Salmon", | ||
role = c("ctb", "aut"), | ||
comment = c(ORCID = "0000-0002-2815-0399")), | ||
person(given = "rOpenSci", | ||
role = "fnd", | ||
comment = "https://ropensci.org/"), | ||
person(given = "Katrin", | ||
family = "Leinweber", | ||
role = "ctb"), | ||
person(given = "Noam", | ||
family = "Ross", | ||
role = "ctb"), | ||
person(given = "Arfon", | ||
family = "Smith", | ||
role = "ctb")) | ||
Description: The 'Codemeta' Project defines a 'JSON-LD' format for describing | ||
software metadata, as detailed at <https://codemeta.github.io>. This package | ||
provides utilities to generate, parse, and modify 'codemeta.json' files | ||
automatically for R packages, as well as tools and examples for working with | ||
'codemeta.json' 'JSON-LD' more generally. | ||
License: GPL-3 | ||
BugReports: https://github.com/ropensci/codemetar/issues | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 6.0.1 | ||
RoxygenNote: 6.0.1.9000 | ||
Depends: R (>= 3.0.0) | ||
Imports: | ||
xml2, | ||
httr, | ||
jsonlite (>= 1.3), | ||
jsonld, | ||
git2r, | ||
devtools, | ||
memoise, | ||
methods, | ||
stats, | ||
stringi, | ||
readr, | ||
desc, | ||
usethis, | ||
whisker, | ||
tibble, | ||
crul, | ||
gh, | ||
stringr, | ||
haven, | ||
rvest, | ||
tibble | ||
sessioninfo, | ||
purrr | ||
Suggests: | ||
testthat, | ||
jsonvalidate, | ||
covr, | ||
knitr, | ||
rmarkdown, | ||
covr | ||
magrittr, | ||
xml2, | ||
dplyr (>= 0.7.0), | ||
printr | ||
VignetteBuilder: knitr | ||
X-schema.org-keywords: metadata, codemeta, ropensci, citation, credit, linked-data | ||
X-schema.org-isPartOf: https://ropensci.org |
Oops, something went wrong.