Skip to content

cran/updateme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

updateme

R-CMD-check

{updateme} modifies library() to tell you if your packages are up to date when you load them:

Installation

You can install {updateme} from CRAN like so:

install.packages("updateme")

Usage

To use {updateme}, simply call library(updateme) before loading other packages. You may find you'd like to have {updateme} available all the time; in this case, consider adding this snippet to your .Rprofile:

if (interactive()) {
  suppressMessages(require(updateme))
}

Configuration

Package sources

By default, new versions of packages will be looked up from the location where they seem to have been installed from. If you installed from CRAN (e.g. using install.packages()), {updateme} will check CRAN for a newer version, and similarly with packages installed from Bioconductor, GitHub, and GitLab.

Occasionally you may want more control over where {updateme} looks for new package versions. You can configure this behaviour, including turning {updateme} off for particular packages, using updateme_sources_set(). If you want to temporarily disable {updateme} entirely you can do so using updateme_off().

Caching

Some caching of downloads is used to make most calls to library() pretty quick. The cache resets every hour, but you can configure this like so:

# Set the cache expiry time to 30 minutes
options(updateme.cache_expiry = 30)

About

❗ This is a read-only mirror of the CRAN R package repository. updateme — Informative Messages About Outdated Packages. Homepage: https://github.com/wurli/updatemehttps://wurli.github.io/updateme/ Report bugs for this package: https://github.com/wurli/updateme/issues

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages