1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/sitrep.R
3\name{dev_sitrep}
4\alias{dev_sitrep}
5\title{Report package development situation}
6\usage{
7dev_sitrep(pkg = ".", debug = FALSE)
8}
9\arguments{
10\item{pkg}{The package to use, can be a file path to the package or a
11package object.  See \code{\link[=as.package]{as.package()}} for more information.}
12
13\item{debug}{If \code{TRUE}, will print out extra information useful for
14debugging. If \code{FALSE}, it will use result cached from a previous run.}
15}
16\value{
17A named list, with S3 class \code{dev_sitrep} (for printing purposes).
18}
19\description{
20\code{dev_sitrep()} reports
21\itemize{
22\item If R is up to date
23\item If RStudio is up to date
24\item If compiler build tools are installed and available for use
25\item If devtools and its dependencies are up to date
26\item If the package's dependencies are up to date
27}
28
29Call this function if things seem weird and you're not sure
30what's wrong or how to fix it. If this function returns no output
31everything should be ready for package development.
32}
33\examples{
34\dontrun{
35dev_sitrep()
36}
37}
38