Skip to content

Instantly share code, notes, and snippets.

@Swarchal
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swarchal/08314fa834941dcd228a to your computer and use it in GitHub Desktop.
Save Swarchal/08314fa834941dcd228a to your computer and use it in GitHub Desktop.
source() for https (eg. raw.github)
source_https <- function(url, ...) {
# load package
require(RCurl)
# parse and evaluate each .R script
sapply(c(url, ...), function(u) {
eval(
parse(
text = getURL(u, followlocation = TRUE,
cainfo = system.file("CurlSSL",
"cacert.pem", package = "RCurl")
)
),
envir = .GlobalEnv)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment