Skip to content

Commit

Permalink
Merge branch 'release/0.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson committed Jun 8, 2015
2 parents fc0b122 + 2b16080 commit a5a4684
Show file tree
Hide file tree
Showing 19 changed files with 91 additions and 501 deletions.
2 changes: 1 addition & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ README[.]md
^pkg-build[.]sh$
^appveyor[.]yml$
^covr-utils.R$
^[.]coveralls[.]R$
^[.]covr[.]R$

#----------------------------
# R related
Expand Down
2 changes: 1 addition & 1 deletion .coveralls.R → .covr.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ excl <- exclusions(
str(excl)

# Run through tests, record source code coverage, and
# publish to Coveralls
# publish to Coveralls or Codecov
covr <- covr_package(exclusions=excl, quiet=FALSE)
195 changes: 0 additions & 195 deletions .make/.travis.yml.rsp

This file was deleted.

29 changes: 26 additions & 3 deletions .make/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ check_Rex:


covr:
$(R_SCRIPT) -e "source('.coveralls.R'); covr::shine(covr)"
$(R_SCRIPT) -e "source('.covr.R'); covr::shine(covr)"


# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Expand Down Expand Up @@ -371,8 +371,31 @@ Makefile: $(FILES_MAKEFILE)
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Refresh
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
refresh_%:
$(R_SCRIPT) -e "R.utils::downloadFile('https://raw.githubusercontent.com/HenrikBengtsson/r-package-files/master/templates/$*')"
.make/Makefile:
$(R_SCRIPT) -e "R.utils::downloadFile('https://raw.githubusercontent.com/HenrikBengtsson/r-package-files/master/.make/Makefile', path='.make/')"

.make/.travis.yml.rsp:
$(R_SCRIPT) -e "R.utils::downloadFile('https://raw.githubusercontent.com/HenrikBengtsson/r-package-files/master/.make/.travis.yml.rsp', path='.make/')"

.make/appveyor.yml.rsp:
$(R_SCRIPT) -e "R.utils::downloadFile('https://raw.githubusercontent.com/HenrikBengtsson/r-package-files/master/.make/appveyor.yml.rsp', path='.make/')"

.make/README.md.rsp:
$(R_SCRIPT) -e "R.utils::downloadFile('https://raw.githubusercontent.com/HenrikBengtsson/r-package-files/master/.make/README.md.rsp', path='.make/')"

.covr.R:
$(R_SCRIPT) -e "R.utils::downloadFile('https://raw.githubusercontent.com/HenrikBengtsson/covr-utils/master/.covr.R')"

clean:
$(RM) .make/.travis.yml.rsp .make/appveyor.yml.rsp .make/README.md.rsp .covr.R
$(RM) covr-utils.R

refresh: clean
$(MAKE) --silent .make/.travis.yml.rsp
$(MAKE) --silent .make/appveyor.yml.rsp
$(MAKE) --silent .make/README.md.rsp
$(MAKE) --silent .covr.R
$(R_SCRIPT) -e "R.utils::downloadFile('https://raw.githubusercontent.com/HenrikBengtsson/r-package-files/master/.make/Makefile', path='.make/', skip=FALSE)"


# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Expand Down
132 changes: 0 additions & 132 deletions .make/README.md.rsp

This file was deleted.

Loading

0 comments on commit a5a4684

Please sign in to comment.