Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reminder to update codemeta.json to release()? #1754

Closed
maelle opened this issue Apr 5, 2018 · 7 comments
Closed

Add reminder to update codemeta.json to release()? #1754

maelle opened this issue Apr 5, 2018 · 7 comments

Comments

@maelle
Copy link
Contributor

maelle commented Apr 5, 2018

Maybe out-of-scope feature request. 😺

Similar to #1753 could there be a reminder in release() when there's a codemeta.json in the root of the package folder?

Codemeta provide minimal metadata schemas for science software and code, in JSON-LD. They can be created via codemetar::write_codemeta()

@jimhester
Copy link
Member

My main hesitation with this is the vast majority of packages are not going to have this. But as you mentioned I guess this reminder would only occur if a codemeta.json file is in the package; so it is probably fine.

@maelle
Copy link
Contributor Author

maelle commented Apr 6, 2018

Just a few code lines that I promise to maintain when needed 😉

@jimhester
Copy link
Member

So just realized we have a mechanism for package authors to add custom release check questions by defining release_questions function in their package environment. I think this may be the best way to handle this. We could have codemetar::write_codemeta() issue a message to add this prompt to the package source the first time it is run on a package. e.g.

message(
  "* Include the following code somewhere in your package\n",
  '  release_questions <- function() "Have you updated codemeta.json with codemetar::write_codemeta()?"')

Then this question will be automatically picked up and included in the release questions for the package.

@maelle
Copy link
Contributor Author

maelle commented Apr 9, 2018

Oh nice! Are there some docs so that I might stop bothering you? I'm wondering how to add several questions 👼

@jimhester
Copy link
Member

No there are no docs, but you can have the function return a character vector of questions to ask.

release_questions <- function() {
  c("Have you xyz",
     "Have you 123")
}

@maelle
Copy link
Contributor Author

maelle commented Apr 10, 2018

Fantastic, thanks!

@lock
Copy link

lock bot commented Oct 7, 2018

This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/

@lock lock bot locked and limited conversation to collaborators Oct 7, 2018
HughParsonage pushed a commit to HughParsonage/devtools that referenced this issue Jul 2, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants