R/runi_repos.R

Defines functions runi_repos

Documented in runi_repos

# runi
# Copyright (C) 2021  Valerio Gherardi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

#' @title R-universe repository base URL
#'
#' @description Get the base URL of an R-universe repository
#'
#' @inheritParams runi_packages
#'
#' @return a string.
#'
#' @author Valerio Gherardi
#'
#' @export
runi_repos <- function(universe) {
        assert_is_string(universe)
        httr::modify_url("https://", hostname = runi_host(universe))
}
vgherard/runi documentation built on Dec. 23, 2021, 3:09 p.m.