Skip to content

Commit 002b325

Browse files
committed
added pnrrs.r helper
1 parent c881c7e commit 002b325

File tree

Image for: File tree

3 files changed

Image for: 3 files changed
+21
-0
lines changed

3 files changed

Image for: 3 files changed
+21
-0
lines changed

‎ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2017-04-23 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* inst/examples/pnrrs.r: Added 'pnrrs.r' helper calling
4+
tools::package_native_routine_registration_skeleton() available in R
5+
3.4.0 and later
6+
17
2017-02-18 Dirk Eddelbuettel <edd@debian.org>
28

39
* .travis.yml (before_install): Use https

‎inst/NEWS.Rd

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
\newcommand{\ghpr}{\href{https://github.com/eddelbuettel/littler/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/eddelbuettel/littler/issues/#1}{##1}}
55

6+
\section{Changes in littler version 0.3.2 (2017-02-14)}{
7+
\itemize{
8+
\item Changes in examples
9+
\itemize{
10+
\item New script \code{pnrrs.r} to call the package-native
11+
registration helper function added in R 3.4.0
12+
}
13+
}
14+
}
15+
616
\section{Changes in littler version 0.3.2 (2017-02-14)}{
717
\itemize{
818
\item Changes in examples

‎inst/examples/pnrrs.r

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/r
2+
3+
if (getRversion() < "3.4.0") stop("Not available for R (< 3.4.0). Please upgrade.", call.=FALSE)
4+
5+
tools::package_native_routine_registration_skeleton(".")

0 commit comments

Image for: 0 commit comments
Comments
 (0)