Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ttriche committed Oct 28, 2015
1 parent b4022d4 commit 35e0ddb
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 0 deletions.
10 changes: 10 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Package: roxpkg
Type: Package
Title: document roxygen2 5.0.0 weirdness
Version: 1.0
Date: 2015-10-28
Author: Foo Barr
Maintainer: Tim Triche <tim.triche@gmail.com>
Description: run devtools::document() on me!
License: The Unlicense
RoxygenNote: 5.0.0
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Generated by roxygen2: do not edit by hand

export(hello)
9 changes: 9 additions & 0 deletions R/goodbye.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#' Hi, I'm not exported!
#'
#' @param txt what to say
#'
#' @export
#'
goodbye <- function(txt = "world") {
cat("Goodbye, ", txt, "\n")
}
8 changes: 8 additions & 0 deletions R/hello.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#' Hi, I'm exported!
#'
#' @param txt what to say
#'
#' @export
hello <- function(txt = "world") {
cat("Hello, ", txt, "\n")
}
15 changes: 15 additions & 0 deletions man/goodbye.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions man/hello.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 35e0ddb

Please sign in to comment.