Sfoglia il codice sorgente

Fix depends and import functions as needed from dplyr and utils

tags/v0.1.0^2
Garrick Aden-Buie 8 anni fa
parent
commit
61e4659b4c
5 ha cambiato i file con 14 aggiunte e 5 eliminazioni
  1. +2
    -3
      DESCRIPTION
  2. +6
    -0
      NAMESPACE
  3. +4
    -0
      R/utils.R
  4. +1
    -1
      man/textAreaInputAlt.Rd
  5. +1
    -1
      man/textInputCode.Rd

+ 2
- 3
DESCRIPTION Vedi File

@@ -8,14 +8,13 @@ Authors@R: c(
person(family = "RStudio", role = "cph", comment = "Copyright holder of included shiny fragments")
)
Description: Test and view regexes.
Depends:
R (>= 3.4.3),
dplyr
Depends: R (>= 3.4.3)
License: GPL-3
Encoding: UTF-8
LazyData: true
Imports:
purrr,
dplyr,
rmarkdown,
utils,
tidyr,

+ 6
- 0
NAMESPACE Vedi File

@@ -5,3 +5,9 @@ export(run_regex)
export(view_regex)
import(miniUI)
import(shiny)
importFrom(dplyr,"%>%")
importFrom(dplyr,filter)
importFrom(dplyr,group_by)
importFrom(dplyr,mutate)
importFrom(dplyr,summarize)
importFrom(utils,getFromNamespace)

+ 4
- 0
R/utils.R Vedi File

@@ -1,3 +1,7 @@
#' @importFrom dplyr "%>%" mutate filter group_by summarize
#' @importFrom utils getFromNamespace
NULL

escape_html <- function(x) {
x = gsub("&", "&amp;", x)
x = gsub("<", "&lt;", x)

+ 1
- 1
man/textAreaInputAlt.Rd Vedi File

@@ -1,5 +1,5 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/regex_gadget.R
% Please edit documentation in R/shiny_modified_inputs.R
\name{textAreaInputAlt}
\alias{textAreaInputAlt}
\title{Modified Text Area Input}

+ 1
- 1
man/textInputCode.Rd Vedi File

@@ -1,5 +1,5 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/regex_gadget.R
% Please edit documentation in R/shiny_modified_inputs.R
\name{textInputCode}
\alias{textInputCode}
\title{Modified Text Input}

Loading…
Annulla
Salva