R/aux-rulings.R

Defines functions parse_rulings

parse_rulings <- function(data) {
  template <- list(
    "oracle_id" = as.character,
    "source" = as.character,
    "published_at" = as.Date,
    "comment" = as.character
  )

  bind_rows(data, template)
}

Try the scryr package in your browser

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

scryr documentation built on Jan. 28, 2022, 9:07 a.m.