🔍 An RStudio addin slash regex utility belt
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

29 linhas
895B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/gadget.R
  3. \name{check_version}
  4. \alias{check_version}
  5. \title{Check if an updated version is available}
  6. \usage{
  7. check_version(
  8. gh_user = "gadenbuie",
  9. gh_repo = "regexplain",
  10. this_version = packageVersion("regexplain")
  11. )
  12. }
  13. \arguments{
  14. \item{gh_user}{GitHub user account}
  15. \item{gh_repo}{GitHub repo name}
  16. \item{this_version}{The currently installed version of the package}
  17. }
  18. \description{
  19. I included this because it can be difficult to tell if your RStudio Addins
  20. are up to date. I may add new features that you want but you won't hear about
  21. the updates. This function checks if an update is available, using GitHub
  22. tags. If an update is available, a modal dialog is shown when you start
  23. the regexplain gadget. This only happens once per R session, though, so feel
  24. free to ignore the message.
  25. }
  26. \keyword{internal}