Files
shiny/DESCRIPTION
Joe Cheng d7eb9b2d18 Fix 'Error in Context$new : could not find function "loadMethod"'
This warning was happening to dependent packages on R CMD check.

The problem is due to delayedAssign; it appears this can't be used safely, at least not to define package-level symbols that contain S4 or reference class objects.

If you call this in a package's .R file:

`delayedAssign("hello", stop("boom"))`

but don't refer to "hello" anywhere, when you run R CMD check on a dependent package you'll see the error.

If the expression needs the methods package (like Context$new()), you'll get an error unless the dependent package itself depends on methods.
2014-03-19 09:49:33 -07:00

57 lines
1.2 KiB
Plaintext

Package: shiny
Type: Package
Title: Web Application Framework for R
Version: 0.9.1
Date: 2014-03-19
Author: RStudio, Inc.
Maintainer: Winston Chang <winston@rstudio.com>
Description: Shiny makes it incredibly easy to build interactive web
applications with R. Automatic "reactive" binding between inputs and
outputs and extensive pre-built widgets make it possible to build
beautiful, responsive, and powerful applications with minimal effort.
License: GPL-3
Depends:
R (>= 2.14.1),
methods
Imports:
stats,
tools,
utils,
httpuv (>= 1.2.0),
caTools,
RJSONIO,
xtable,
digest
Suggests:
datasets,
markdown,
Cairo (>= 1.5-5),
testthat
URL: http://www.rstudio.com/shiny/
BugReports: https://github.com/rstudio/shiny/issues
Collate:
'bootstrap-layout.R'
'bootstrap.R'
'cache.R'
'map.R'
'fileupload.R'
'graph.R'
'hooks.R'
'imageutils.R'
'jqueryui.R'
'priorityqueue.R'
'react.R'
'reactives.R'
'run-url.R'
'sessioncontext.R'
'utils.R'
'shiny.R'
'shinyui.R'
'shinywrappers.R'
'showcase.R'
'slider.R'
'tags.R'
'tar.R'
'timer.R'
'update-input.R'