Skip to content

Commit

Permalink
URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Mar 9, 2024
1 parent 1e3bb38 commit fa09cc7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Authors@R: c(
)
Description: Provides an implementation of a BankAccount 'C++' class being
connected to 'R' using 'Rcpp Modules' to expose the underlying class methods.
BugReports: https://github.com/coatless-r-n-d/rcpp-modules-bank-account
URL: https://rd.thecoatlessprofessor.com/rcpp-modules-bank-account/
BugReports: https://github.com/coatless-rd-rcpp/rcpp-modules-bank-account/issues
URL: https://github.com/coatless-rd-rcpp/rcpp-modules-bank-account, https://rd-rcpp.thecoatlessprofessor.com/rcpp-modules-bank-account/
Depends: R (>= 4.3.0)
Imports: Rcpp (>= 1.0.12), methods
LinkingTo: Rcpp
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## Exposing _C++_ Classes into _R_ Through Rcpp Modules

[![Travis-CI Build Status](https://travis-ci.org/r-pkg-examples/rcpp-modules-bank-account.svg?branch=master)](https://travis-ci.org/r-pkg-examples/rcpp-modules-bank-account)
<!-- badges: start -->
[![R-CMD-check](https://github.com/coatless-rd-rcpp/rcpp-modules-bank-account/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/coatless-rd-rcpp/rcpp-modules-bank-account/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

The `RcppBankAccount` _R_ package provides an example of using [Rcpp Modules](https://cran.r-project.org/web/packages/Rcpp/vignettes/rcpp-modules-bank-account.pdf)
to expose _C++_ classes and their methods to _R_. The example hails from
Expand All @@ -18,8 +20,8 @@ guides.
With a compiler in hand, one can then install the package from GitHub by:

```r
# install.packages("devtools")
devtools::install_github("r-pkg-examples/rcpp-modules-bank-account")
# install.packages("remotes")
remotes::install_github("coatless-rd-rcpp/rcpp-modules-bank-account")
library("RcppBankAccount")
```

Expand Down
14 changes: 13 additions & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
url: https://rd.thecoatlessprofessor.com/rcpp-modules-bank-account/
url: https://rd-rcpp.thecoatlessprofessor.com/rcpp-modules-bank-account/
template:
bootstrap: 5
includes:
in_header: |
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4979996562647159"
crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4QRKC3RN96"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4QRKC3RN96');
</script>
5 changes: 3 additions & 2 deletions man/RcppBankAccount-package.Rd

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

0 comments on commit fa09cc7

Please sign in to comment.