Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
30 changes: 2 additions & 28 deletions .Rbuildignore
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
^other$g
^.*\.Rproj$
^\.Rproj\.user$
compile.*
.vscode
^_pkgdown\.yml$
^docs$
Expand All @@ -14,32 +15,5 @@
.nojekyll
.gitkeep
^man-roxygen
^README\.qmd$
^README_files/
^README\.Rmd$
logo.png
^vignettes/articles$
^vignettes/.quarto
^Archived/
^src/\.cargo$
^src/rust/target/
^.*_test\.R$
^.*_old.R$
rust_debug.txt
^inst/template/
^get-dependencies
^target/
^inst/Learn/.quarto
^inst/Learn/_*
Experimental


^\.vscode$
^src/rust/vendor$
^src/rust/target$
^src/Makevars$
^src/Makevars\.win$

^Cargo\.toml$
^Cargo\.lock$

^Images/
Empty file modified .Renviron
100755 → 100644
Empty file.
25 changes: 0 additions & 25 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/build.yml

This file was deleted.

13 changes: 6 additions & 7 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
release:
types: [published]
workflow_dispatch:

name: pkgdown.yaml

permissions: read-all
name: pkgdown

jobs:
pkgdown:
Expand All @@ -23,7 +22,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

Expand All @@ -33,16 +32,16 @@ jobs:

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::pkgdown, local::.
extra-packages: any::pkgdown, any::rsconnect, local::.
needs: website

- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE, quiet = FALSE)
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}

- name: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4.5.0
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
clean: false
branch: gh-pages
Expand Down
84 changes: 18 additions & 66 deletions .gitignore
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,80 +1,32 @@
# R session & IDE noise
.Rproj.user
.Rhistory
.Rapp.history
.RData
.RDataTmp
.Ruserdata
.Renviron
.Rproj.user/
.vscode/
.DS_Store
PmetricsGit.Rproj

# Build/check artifacts
/*.tar.gz
/*.Rcheck/
..Rcheck/
Pmetrics.Rcheck/
*_cache/
/cache/
*.utf8.md
*.knit.md
.Rd2pdf*/
rsconnect/
po/*~

# Vignettes/docs rendered locally
vignettes/*.html
vignettes/*.pdf
vignettes/*_files/
inst/doc/
#build
Archived
PACKAGES.gz
PACKAGES.rds
PMchangelog.html

# Credentials/tokens
.httr-oauth

# Compiled objects
src/*.o
src/*.so
src/*.dll
src/Pmetrics.so
src/knn.o
src/registerDynamicSymbol.o
src/symbols.rds
src/Pmetrics.dll
PmetricsGit.Rproj
inst/compiledFortran/

# Rust artifacts
target/
Cargo.lock

# Generated config/templates
inst/rust/template/*

# Training book outputs
inst/Learn/.quarto/
inst/Learn/_book/
inst/Learn/_site/
inst/Learn/_freeze/

# Simulation / report artifacts
data-raw/Runs/
.DS_Store
src/symbols.rds
tests/testthat/Runs/
Examples
Experimental
..Rcheck/
.vscode/
.Rd2pdf65996/
other/
1
2
3

# Misc project outputs
*_test.R
docs/
docs
src/rust/vendor
src/Makevars
src/Makevars.win

/.quarto/
**/*.quarto_ipynb
.Rprofile
Examples
.Rdata
.httr-oauth
inst/rust/template/*
inst/options/PMoptions.json
inst/options/PMoptions.json
inst/doc
1 change: 1 addition & 0 deletions .nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 0 additions & 1 deletion Archived/.gitignore

This file was deleted.

Loading
Loading