forked from trinker/pacman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dason Kurkiewicz
committed
Jun 3, 2012
1 parent
8aeed1a
commit 793fba0
Showing
44 changed files
with
455 additions
and
529 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,42 @@ | ||
Package: pacman | ||
Type: Package | ||
Title: Package Management Tool | ||
Version: 0.1.0 | ||
Version: 0.2.0 | ||
Date: 2012-05-09 | ||
Author: Tyler Rinker & Dason Kurkiewicz | ||
Maintainer: Tyler Rinker <[email protected]> | ||
Depends: R (>= 2.15.0) | ||
Suggests: XML | ||
Description: This package is a designed to more efficiently manage packages. pacman conveniently wraps library and package related functions and names them in an intuitive and consistent fashion. It seeks to combine functionality from lower level functions that can speed up workflow. | ||
Depends: | ||
R (>= 2.15.0) | ||
Suggests: | ||
XML | ||
Description: This package is a designed to more efficiently manage packages. | ||
pacman conveniently wraps library and package related functions and names | ||
them in an intuitive and consistent fashion. It seeks to combine | ||
functionality from lower level functions that can speed up workflow. | ||
License: GPL-2 | ||
URL: http://trinkerrstuff.wordpress.com/ | ||
Collate: | ||
'p_author.R' | ||
'p_base.R' | ||
'p_citation.R' | ||
'p_cran.R' | ||
'p_data.R' | ||
'p_delete.R' | ||
'p_exists.R' | ||
'p_functions.R' | ||
'p_getXML.R' | ||
'p_help.R' | ||
'p_information.R' | ||
'p_install.R' | ||
'p_interactive.R' | ||
'p_library.R' | ||
'p_load.R' | ||
'p_loaded.R' | ||
'p_news.R' | ||
'p_path.R' | ||
'p_search_any.R' | ||
'p_search_library.R' | ||
'p_unload.R' | ||
'p_update.R' | ||
'p_version.R' | ||
'p_vignette.R' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,36 @@ | ||
|
||
export(p_author) | ||
export(p_base) | ||
export(p_citation) | ||
export(p_cite) | ||
export(p_cran) | ||
export(p_data) | ||
export(p_delete) | ||
export(p_del) | ||
export(p_exists) | ||
export(p_functions) | ||
export(p_author) | ||
export(p_base) | ||
export(p_citation) | ||
export(p_cite) | ||
export(p_cran) | ||
export(p_data) | ||
export(p_del) | ||
export(p_delete) | ||
export(p_exists) | ||
export(p_functions) | ||
export(p_funs) | ||
export(p_get) | ||
export(p_get) | ||
export(p_getXML) | ||
export(p_help) | ||
export(p_information) | ||
export(p_help) | ||
export(p_info) | ||
export(p_information) | ||
export(p_install) | ||
export(p_interactive) | ||
export(p_inter) | ||
export(p_library) | ||
export(p_lib) | ||
export(p_load) | ||
export(p_loaded) | ||
export(p_news) | ||
export(p_path) | ||
export(p_unload) | ||
export(p_search_any) | ||
export(p_sa) | ||
export(p_search_library) | ||
export(p_sl) | ||
export(p_update) | ||
export(p_version) | ||
export(p_interactive) | ||
export(p_lib) | ||
export(p_library) | ||
export(p_load) | ||
export(p_loaded) | ||
export(p_news) | ||
export(p_path) | ||
export(p_sa) | ||
export(p_search_any) | ||
export(p_search_library) | ||
export(p_sl) | ||
export(p_unload) | ||
export(p_up) | ||
export(p_update) | ||
export(p_ver) | ||
export(p_vignette) | ||
export(p_vign) | ||
|
||
|
||
|
||
export(p_version) | ||
export(p_vign) | ||
export(p_vignette) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,4 @@ function(open = FALSE){ | |
} | ||
cat('\npackages with an "*" are loaded when R starts\n\n') | ||
return(z) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ function(package="r") { | |
} | ||
} | ||
|
||
p_cite <- p_citation | ||
#' @export | ||
p_cite <- p_citation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,4 +53,5 @@ function (...) | |
} | ||
} | ||
|
||
p_del <- p_delete | ||
#' @export | ||
p_del <- p_delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ function (package, cran = TRUE) | |
} else { | ||
x %in% list.files(.libPaths()) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,4 +37,5 @@ function (package = NULL, load = FALSE) | |
return(a) | ||
} | ||
|
||
p_funs <- p_functions | ||
#' @export | ||
p_funs <- p_functions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,4 @@ function(package="XML", fun){ | |
}else{ | ||
cat("Please download the XML package before using", fun, "\n") | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,4 +76,4 @@ function (package = NULL, web = FALSE, pdf = FALSE) | |
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ function(package=NULL) { | |
packageDescription(x) | ||
} | ||
|
||
p_info <- p_information | ||
#' @export | ||
p_info <- p_information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,5 @@ function(package){ | |
do.call('library', list(pack)) | ||
} | ||
|
||
p_get <- p_install | ||
#' @export | ||
p_get <- p_install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,4 +32,5 @@ function (open = FALSE) | |
return(y) | ||
} | ||
|
||
p_lib <- p_library | ||
#' @export | ||
p_lib <- p_library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,4 +38,5 @@ function (install = TRUE) { | |
} | ||
} | ||
|
||
p_up <- p_update | ||
#' @export | ||
p_up <- p_update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ function(package="R") { | |
} | ||
} | ||
|
||
p_ver <- p_version | ||
#' @export | ||
p_ver <- p_version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,22 @@ | ||
\name{p_author} | ||
\alias{p_author} | ||
%- Also NEED an '\alias' for EACH other topic documented here. | ||
\title{ | ||
Returns the author of a package | ||
} | ||
\description{ | ||
Returns the author of a package | ||
} | ||
\title{Returns the author of a package} | ||
\usage{ | ||
p_author(package = "base") | ||
p_author(package = "base") | ||
} | ||
%- maybe also 'usage' for other objects documented here. | ||
\arguments{ | ||
\item{package}{ | ||
name of package | ||
} | ||
\item{package}{name of package} | ||
} | ||
\seealso{ | ||
\code{\link[utils]{packageDescription}} | ||
\description{ | ||
Returns the author of a package | ||
} | ||
\examples{ | ||
p_author(pacman) | ||
p_author() | ||
} | ||
% Add one or more standard keywords, see file 'KEYWORDS' in the | ||
% R documentation directory. | ||
\seealso{ | ||
\code{\link[utils]{packageDescription}} | ||
} | ||
\keyword{author} | ||
\keyword{package} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,27 @@ | ||
\name{p_base} | ||
\alias{p_base} | ||
%- Also NEED an '\alias' for EACH other topic documented here. | ||
\title{ | ||
List all the packages in a base install | ||
} | ||
\description{ | ||
List all the packages in a base install | ||
} | ||
\title{List all the packages in a base install} | ||
\usage{ | ||
p_base(open=FALSE) | ||
%- maybe also 'usage' for other objects documented here. | ||
p_base(open = FALSE) | ||
} | ||
\arguments{ | ||
\item{open}{ | ||
logical. If TRUE opens the directory of the base install packages | ||
\item{open}{logical. If TRUE opens the directory of the | ||
base install packages} | ||
} | ||
\description{ | ||
List all the packages in a base install | ||
} | ||
|
||
\note{ | ||
PAckages that are installed when R starts are marked with an asterisk(*) | ||
} | ||
\seealso{ | ||
\code{\link[base]{getOption}} | ||
Packages that are installed when R starts are marked with | ||
an asterisk(*) | ||
} | ||
\examples{ | ||
p_base() | ||
p_base(TRUE) | ||
} | ||
% Add one or more standard keywords, see file 'KEYWORDS' in the | ||
% R documentation directory. | ||
\seealso{ | ||
\code{\link[base]{getOption}} | ||
} | ||
\keyword{base} | ||
\keyword{package} | ||
\keyword{package} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,24 @@ | ||
\name{p_citation} | ||
\alias{p_citation} | ||
\alias{p_cite} | ||
%- Also NEED an '\alias' for EACH other topic documented here. | ||
\title{ | ||
Generate citation for a package | ||
} | ||
\description{ | ||
Generate citation for a package | ||
} | ||
\title{Generate citation for a package} | ||
\usage{ | ||
p_citation(package = "r") | ||
p_cite(package = "r") | ||
p_citation(package = "r") | ||
} | ||
%- maybe also 'usage' for other objects documented here. | ||
\arguments{ | ||
\item{package}{ | ||
name of package | ||
} | ||
\item{package}{Name of the package you want a citation | ||
for} | ||
} | ||
\seealso{ | ||
\code{\link[utils]{citation}} | ||
\description{ | ||
Generate citation for a package | ||
} | ||
\examples{ | ||
p_cite(pacman) | ||
p_citation(pacman) | ||
} | ||
% Add one or more standard keywords, see file 'KEYWORDS' in the | ||
% R documentation directory. | ||
\seealso{ | ||
\code{\link[utils]{citation}} | ||
} | ||
\keyword{citation} | ||
\keyword{cite}% __ONLY ONE__ keyword per line | ||
\keyword{cite} | ||
|
Oops, something went wrong.