SteffenMoritz / ridge

CRAN R Package: Ridge Regression with automatic selection of the penalty parameter
GNU General Public License v2.0
18 stars 11 forks source link

Fix NAMESPACE so it can be generated #11

Closed dfrankow closed 4 years ago

dfrankow commented 4 years ago

NAMESPACE has to have the "Generated by roxygen2" header. Not sure how it fell off.

SteffenMoritz commented 4 years ago

I already realized this, have it now in my own commit :)

Didn't know devtools::document() existed - that is really nice - exactly what was needed. I always hesitated to use roxygen2, because I thought it is not possible to use it without transferring the manually created man pages to roxygen2 markup.

dfrankow commented 4 years ago

Gotcha. I think it skips things it hasn't generated, so you could move the pages one by one if you wished.

SteffenMoritz commented 4 years ago

Yeah that was the first thing I checked - that the existing documentation stays there :)

After I merged the last updates: 0 errors, 0 warnings, 0 notes

On my own Mac ass well on TravisCI https://travis-ci.org/github/SteffenMoritz/ridge

I now submitted to WinBuilder (https://win-builder.r-project.org/upload.aspx) in order to check that for Windows everything is fine too.

dfrankow commented 4 years ago

Ah, gotcha, this is already on master. Thanks!