├── .Rbuildignore ├── .gitignore ├── .gitmodules ├── DESCRIPTION ├── Makefile ├── MakefileR.Rproj ├── NAMESPACE ├── NEWS.md ├── NEWS.md.tmpl ├── R ├── base.R ├── comment.R ├── def.R ├── file.R ├── group.R ├── rule.R ├── text.R ├── write.R └── zzz-autoroxy.R ├── README.md ├── appveyor.yml ├── cran-comments.md ├── inst └── staticdocs │ └── index.R ├── makeR ├── Makefile ├── Makefile.tmpl ├── README.md ├── branch-is-master ├── check-rd-files ├── check-rev-dep ├── get-pkg-name ├── get-pkg-version ├── gh-pages-build ├── git-is-clean ├── gitflow │ ├── filter-flow-release-finish-tag-message │ ├── post-flow-hotfix-start │ ├── post-flow-release-finish │ ├── post-flow-release-start │ └── pre-flow-release-finish ├── init-gh-pages ├── init-staticdocs ├── init-wercker ├── postinstall ├── res │ └── wercker.yml ├── uninstall ├── upgrade └── winbuilder ├── tests ├── testthat.R └── testthat │ ├── test-comment.R │ ├── test-def.R │ ├── test-file.R │ ├── test-group.R │ ├── test-rule.R │ ├── test-text.R │ └── test-write.R ├── vignettes └── demo.Rmd └── wercker.yml /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/Makefile -------------------------------------------------------------------------------- /MakefileR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/MakefileR.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/NEWS.md -------------------------------------------------------------------------------- /NEWS.md.tmpl: -------------------------------------------------------------------------------- 1 | Version $VERSION ($BUILDDATE) 2 | === 3 | 4 | -------------------------------------------------------------------------------- /R/base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/base.R -------------------------------------------------------------------------------- /R/comment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/comment.R -------------------------------------------------------------------------------- /R/def.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/def.R -------------------------------------------------------------------------------- /R/file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/file.R -------------------------------------------------------------------------------- /R/group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/group.R -------------------------------------------------------------------------------- /R/rule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/rule.R -------------------------------------------------------------------------------- /R/text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/text.R -------------------------------------------------------------------------------- /R/write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/write.R -------------------------------------------------------------------------------- /R/zzz-autoroxy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/R/zzz-autoroxy.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/staticdocs/index.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /makeR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/Makefile -------------------------------------------------------------------------------- /makeR/Makefile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/Makefile.tmpl -------------------------------------------------------------------------------- /makeR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/README.md -------------------------------------------------------------------------------- /makeR/branch-is-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/branch-is-master -------------------------------------------------------------------------------- /makeR/check-rd-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/check-rd-files -------------------------------------------------------------------------------- /makeR/check-rev-dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/check-rev-dep -------------------------------------------------------------------------------- /makeR/get-pkg-name: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env Rscript --vanilla 2 | 3 | cat(read.dcf("DESCRIPTION")[,"Package"]) 4 | 5 | # vim: ft=r 6 | -------------------------------------------------------------------------------- /makeR/get-pkg-version: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env Rscript --vanilla 2 | 3 | cat(read.dcf("DESCRIPTION")[,"Version"]) 4 | 5 | # vim: ft=r 6 | -------------------------------------------------------------------------------- /makeR/gh-pages-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/gh-pages-build -------------------------------------------------------------------------------- /makeR/git-is-clean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | test "$(git status --porcelain | wc -c)" = "0" 6 | -------------------------------------------------------------------------------- /makeR/gitflow/filter-flow-release-finish-tag-message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/gitflow/filter-flow-release-finish-tag-message -------------------------------------------------------------------------------- /makeR/gitflow/post-flow-hotfix-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/gitflow/post-flow-hotfix-start -------------------------------------------------------------------------------- /makeR/gitflow/post-flow-release-finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/gitflow/post-flow-release-finish -------------------------------------------------------------------------------- /makeR/gitflow/post-flow-release-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/gitflow/post-flow-release-start -------------------------------------------------------------------------------- /makeR/gitflow/pre-flow-release-finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/gitflow/pre-flow-release-finish -------------------------------------------------------------------------------- /makeR/init-gh-pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/init-gh-pages -------------------------------------------------------------------------------- /makeR/init-staticdocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/init-staticdocs -------------------------------------------------------------------------------- /makeR/init-wercker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/init-wercker -------------------------------------------------------------------------------- /makeR/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/postinstall -------------------------------------------------------------------------------- /makeR/res/wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/res/wercker.yml -------------------------------------------------------------------------------- /makeR/uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/uninstall -------------------------------------------------------------------------------- /makeR/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/upgrade -------------------------------------------------------------------------------- /makeR/winbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/makeR/winbuilder -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-comment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/tests/testthat/test-comment.R -------------------------------------------------------------------------------- /tests/testthat/test-def.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/tests/testthat/test-def.R -------------------------------------------------------------------------------- /tests/testthat/test-file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/tests/testthat/test-file.R -------------------------------------------------------------------------------- /tests/testthat/test-group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/tests/testthat/test-group.R -------------------------------------------------------------------------------- /tests/testthat/test-rule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/tests/testthat/test-rule.R -------------------------------------------------------------------------------- /tests/testthat/test-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/tests/testthat/test-text.R -------------------------------------------------------------------------------- /tests/testthat/test-write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/tests/testthat/test-write.R -------------------------------------------------------------------------------- /vignettes/demo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/vignettes/demo.Rmd -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/MakefileR/HEAD/wercker.yml --------------------------------------------------------------------------------