Bug fix release
NA_character_
etc. in the job. Closes https://github.com/lindeloev/job/issues/51.First release submitted to CRAN.
job::export()
function in the code chunk. The default is job::export("changed")
which returns all variables that were defined or changed during the job. v0.1 only returned new variable names (now job::export("new")
). Read more in the README. (#15)job::export("changed", file = "my_jobresult.RData")
to save to a file rather than returning to the main RStudio session.job::job()
shows more informative messages all around to reduce state ambiguity when launching jobs.import = "auto"
to import all objects that are “mentioned” in the code. The default import = "all"
replaces import = ls()
."(untitled)"
.job::job()
now takes unnamed arguments too, e.g., job::job({<code>}, NULL, c("rstudioapi"))
. (#25)job::empty()
which is short for job::job({<code>}, import = NULL, packages = NULL, opts = NULL)
(#23)options
caused errors - mostly on macs (#4, #7, #10, #27).call
is not saved in this case. (#9)digest
package was added as a dependency to support export("changed")
.testthat
for unit tests and expanded the test suite considerably. (#26)Beta release.