ATFutures / calendar

R interface to iCal (.ics files)
https://atfutures.github.io/calendar/
Other
38 stars 10 forks source link

Submit to CRAN #13

Closed Robinlovelace closed 5 years ago

layik commented 5 years ago

Thanks, please do not comment out your examples and use \donttest{} instead:

\examples{
   examples for users and checks:
   executable in < 5 sec

   donttest{
       further examples for users (not used for checks)
   }
}

Please ensure that your functions do not write by default or in your
examples/vignettes/tests in the user's home filespace. That is not allow
by CRAN policies. Please only write/save files if the user has specified
a directory. In your examples/vignettes/tests you can write to
tempdir(). E.g.

myfile <- file.path(tempdir(), "ic.ics")
ic_write(ic, myfile)```