[med-svn] [r-cran-crul] branch master updated (1df9833 -> 99a9329)

Andreas Tille tille at debian.org
Sun Oct 1 21:16:40 UTC 2017


This is an automated email from the git hooks/post-receive script.

tille pushed a change to branch master
in repository r-cran-crul.

      from  1df9833   Moved packaging from SVN to Git
       new  fda093c   New upstream version
       new  304dfbe   Standards-Version: 4.1.1,  cme fix dpkg-control
       new  e0d9374   New upstream version 0.3.8
       new  8083826   Updated version 0.3.8 from 'upstream/0.3.8'
       new  99a9329   Upload to unstable

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 DESCRIPTION                           |  15 +-
 MD5                                   |  98 ++++---
 NAMESPACE                             |  27 +-
 NEWS.md                               | 123 +++++++-
 R/async.R                             | 124 ++++++++
 R/asyncvaried.R                       | 230 +++++++++++++++
 R/auth.R                              |  36 +++
 R/client.R                            | 170 +++++------
 R/crul-package.r                      |  24 +-
 R/curl-options.R                      |  23 +-
 R/delete-requests.R                   |  18 ++
 R/handle.R                            |   2 +-
 R/httprequest.R                       | 243 ++++++++++++++++
 R/make_url.R                          |  44 +++
 R/mocking.R                           |  36 +++
 R/onLoad.R                            |   6 +
 R/post-requests.R                     |  42 ++-
 R/proxies.R                           |  98 +++++++
 R/query.R                             |   4 +
 R/response.R                          |  50 +++-
 R/{response.R => stubbed-response.R}  |  68 +----
 R/zzz.R                               |  56 ++++
 README.md                             | 167 +++++++++--
 build/vignette.rds                    | Bin 209 -> 264 bytes
 debian/changelog                      |   7 +-
 debian/control                        |   6 +-
 inst/doc/async.Rmd                    | 263 +++++++++++++++++
 inst/doc/async.html                   | 356 +++++++++++++++++++++++
 inst/doc/crul_vignette.Rmd            |  95 ++++---
 inst/doc/crul_vignette.html           | 515 ++++++++++++++--------------------
 inst/doc/how-to-use-crul.Rmd          | 224 +++++++++++++++
 inst/doc/how-to-use-crul.html         | 311 ++++++++++++++++++++
 inst/vign/crul_vignette.Rmd           | 156 ----------
 inst/vign/crul_vignette.md            | 281 -------------------
 man/Async.Rd                          |  68 +++++
 man/AsyncVaried.Rd                    | 125 +++++++++
 man/HttpClient.Rd                     |  79 +++---
 man/HttpRequest.Rd                    |  91 ++++++
 man/HttpResponse.Rd                   |  55 ++--
 man/HttpStubbedResponse.Rd            |  43 +++
 man/auth.Rd                           |  44 +++
 man/crul-package.Rd                   |  25 +-
 man/curl-options.Rd                   |  25 +-
 man/delete-requests.Rd                |  23 ++
 man/handle.Rd                         |   3 +-
 man/http-headers.Rd                   |   1 -
 man/mock.Rd                           |  46 +++
 man/post-requests.Rd                  |  45 ++-
 man/proxies.Rd                        |  60 ++++
 man/url_build.Rd                      |  39 +++
 man/writing-options.Rd                |   1 -
 tests/testthat/test-async.R           | 151 ++++++++++
 tests/testthat/test-asyncvaried.R     |  59 ++++
 tests/testthat/test-auth.R            |  57 ++++
 tests/testthat/test-client.R          |  47 +++-
 tests/testthat/test-delete.R          |   2 +-
 tests/testthat/test-handle.R          |  14 +
 tests/testthat/test-headers.R         |   7 +-
 tests/testthat/test-mocking.R         |  73 +++++
 tests/testthat/test-paths.R           |  12 +-
 tests/testthat/test-proxies.R         |  56 ++++
 tests/testthat/test-put.R             |   2 +-
 tests/testthat/test-query.R           |   3 +-
 tests/testthat/test-request.R         |  71 +++++
 tests/testthat/test-response.R        |  36 +++
 tests/testthat/test-url_build_parse.R |  96 +++++++
 tests/testthat/test-utils.R           |  49 ++++
 vignettes/async.Rmd                   | 263 +++++++++++++++++
 vignettes/crul_vignette.Rmd           |  95 ++++---
 vignettes/how-to-use-crul.Rmd         | 224 +++++++++++++++
 70 files changed, 4815 insertions(+), 1193 deletions(-)
 create mode 100644 R/async.R
 create mode 100644 R/asyncvaried.R
 create mode 100644 R/auth.R
 create mode 100644 R/delete-requests.R
 create mode 100644 R/httprequest.R
 create mode 100644 R/mocking.R
 create mode 100644 R/onLoad.R
 create mode 100644 R/proxies.R
 copy R/{response.R => stubbed-response.R} (61%)
 create mode 100644 inst/doc/async.Rmd
 create mode 100644 inst/doc/async.html
 create mode 100644 inst/doc/how-to-use-crul.Rmd
 create mode 100644 inst/doc/how-to-use-crul.html
 delete mode 100644 inst/vign/crul_vignette.Rmd
 delete mode 100644 inst/vign/crul_vignette.md
 create mode 100644 man/Async.Rd
 create mode 100644 man/AsyncVaried.Rd
 create mode 100644 man/HttpRequest.Rd
 create mode 100644 man/HttpStubbedResponse.Rd
 create mode 100644 man/auth.Rd
 create mode 100644 man/delete-requests.Rd
 create mode 100644 man/mock.Rd
 create mode 100644 man/proxies.Rd
 create mode 100644 man/url_build.Rd
 create mode 100644 tests/testthat/test-async.R
 create mode 100644 tests/testthat/test-asyncvaried.R
 create mode 100644 tests/testthat/test-auth.R
 create mode 100644 tests/testthat/test-handle.R
 create mode 100644 tests/testthat/test-mocking.R
 create mode 100644 tests/testthat/test-proxies.R
 create mode 100644 tests/testthat/test-request.R
 create mode 100644 tests/testthat/test-response.R
 create mode 100644 tests/testthat/test-url_build_parse.R
 create mode 100644 tests/testthat/test-utils.R
 create mode 100644 vignettes/async.Rmd
 create mode 100644 vignettes/how-to-use-crul.Rmd

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/r-cran-crul.git



More information about the debian-med-commit mailing list