-
Notifications
You must be signed in to change notification settings - Fork 86
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
Base compendium does not cleanly pass devtools::check()
#126
Comments
Thanks for noting this. I have handled it in 13cc5d6. I have updated the code so it generates a valid DESCRIPTION. However, What do you think @nevrome? I propose we fold in step 2 The advantage is then the resulting pkg will fully pass devtools::check, which I think is a good idea, because this can be a huge time sink for the beginner. Another advantage is a reduction in the complexity of setting up the compendium because there are less steps. The disadvantage is that choosing the license becomes a minor decision. The tradeoff is that we don't make it quite so easy for the user to choose the license of their compendium. My guess is that most users and beginners will be happy with MIT, and those that want GPL, etc., will be comfortable to modify an argument when they use |
Hm - three things:
So I would suggest we do not add a call to
to something like
|
Describe the bug
This is super minor. The current base compendium does not cleanly pass
devtools::check()
with 0 errors, 0 warnings, and 0 notes without user intervention (this may be by design?). This is because there is a missing.
at the end of the following line inDESCRIPTION
:Description: What the package does (one paragraph)
To Reproduce
Describe the steps to reproduce the behavior:
rrtools::create_compendium("DELETEme01")
devtools::load_all(".")
anddevtools::document()
devtools::check()
Expected behavior
The base compendium generated by
rrtools::create_compendium("DELETEme01")
should passdevtools::check()
with 0 errors, 0 warnings, and 0 notes without any manual intervention by the user.The text was updated successfully, but these errors were encountered: