R/start_iss.R

#' Start ISS
#'
#' Chain \code{\link{directives_section}} against this function to start building custom
#' installers.
#'
#' @inheritParams create_app
#'
#' @examples
#' \dontrun{
#' start_iss('myapp') %>%
#'   directives_section(
#'     include_R = FALSE, R_version = '3.3.2')
#' }
#'
#' @return \code{app_name} and set \code{options('RInno.app_name' = app_name)}
#'
#' @seealso \code{\link{directives_section}}.
#' @author Jonathan M. Hill
#' @export
start_iss <- function(app_name) {
  options("RInno.app_name" = app_name)

  app_name
}

Try the RInno package in your browser

Any scripts or data that you put into this service are public.

RInno documentation built on May 1, 2019, 10:52 p.m.