Collect Version Histories For Vendor Products
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.0 KiB

6 years ago
#' Collect Version Histories For Vendor Products
#'
#' Provides a set of functions to gather version histories of products
#' (mainly software products) from their sources (generally websites).
#'
#' @md
#' @name vershist
#' @docType package
#' @author Bob Rudis (bob@@rud.is)
#' @import semver
6 years ago
#' @importFrom purrr keep discard map map_df %>% safely
6 years ago
#' @importFrom dplyr mutate rename select as_data_frame left_join bind_cols arrange
#' @importFrom dplyr rename
#' @importFrom stringi stri_match_first_regex stri_detect_fixed stri_detect_regex
#' @importFrom stringi stri_replace_all_regex stri_replace_first_fixed
6 years ago
#' @importFrom stringi stri_extract_first_regex stri_sub stri_replace_first_regex
6 years ago
#' @importFrom lubridate year mdy mdy_hms
#' @importFrom readr read_lines
#' @importFrom utils globalVariables
#' @importFrom xml2 read_html read_xml xml_attr
#' @importFrom rvest html_nodes html_text xml_nodes
#' @importFrom curl curl
6 years ago
#' @importFrom gh gh gh_next
#' @importFrom tidyr separate
6 years ago
#' @useDynLib vershist
#' @importFrom Rcpp sourceCpp
NULL