-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporally fix due to pkgdown v1.4 priority change
for details see: r-lib/pkgdown#1136 and in addition also improve installation description with kwb.pkgbuild:::use_installation()
- Loading branch information
Showing
2 changed files
with
56 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,39 @@ | ||
--- | ||
title: '' | ||
output: html_document | ||
--- | ||
|
||
```{r setup, include=FALSE} | ||
knitr::opts_chunk$set(echo = TRUE) | ||
``` | ||
|
||
|
||
[![Appveyor build status](https://ci.appveyor.com/api/projects/status/t9w8xyoyyg7tbk2y/branch/master?svg=true)](https://ci.appveyor.com/project/KWB-R/kwb-utils/branch/master) | ||
[![Build Status](https://travis-ci.org/KWB-R/kwb.utils.svg?branch=master)](https://travis-ci.org/KWB-R/kwb.utils) | ||
[![codecov](https://codecov.io/github/KWB-R/kwb.utils/branch/master/graphs/badge.svg)](https://codecov.io/github/KWB-R/kwb.utils) | ||
[![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable) | ||
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/kwb.utils)](http://cran.r-project.org/package=kwb.utils) | ||
[![DOI](https://zenodo.org/badge/23293/KWB-R/kwb.utils.svg)](https://zenodo.org/badge/latestdoi/23293/KWB-R/kwb.utils) | ||
|
||
|
||
## Install from GitHub | ||
|
||
```{r eval=FALSE} | ||
if (! require("devtools")) { | ||
install.packages("devtools", repos = "https://cloud.r-project.org") | ||
} | ||
devtools::install_github(repo = "kwb-r/kwb.utils", dependencies = TRUE) | ||
--- | ||
title: '' | ||
output: html_document | ||
--- | ||
|
||
```{r setup, include=FALSE} | ||
knitr::opts_chunk$set(echo = TRUE) | ||
``` | ||
|
||
|
||
[![Appveyor build status](https://ci.appveyor.com/api/projects/status/t9w8xyoyyg7tbk2y/branch/master?svg=true)](https://ci.appveyor.com/project/KWB-R/kwb-utils/branch/master) | ||
[![Build Status](https://travis-ci.org/KWB-R/kwb.utils.svg?branch=master)](https://travis-ci.org/KWB-R/kwb.utils) | ||
[![codecov](https://codecov.io/github/KWB-R/kwb.utils/branch/master/graphs/badge.svg)](https://codecov.io/github/KWB-R/kwb.utils) | ||
[![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable) | ||
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/kwb.utils)](http://cran.r-project.org/package=kwb.utils) | ||
[![DOI](https://zenodo.org/badge/23293/KWB-R/kwb.utils.svg)](https://zenodo.org/badge/latestdoi/23293/KWB-R/kwb.utils) | ||
|
||
|
||
## Installation | ||
|
||
For details on how to install KWB-R packages checkout our [installation tutorial](https://kwb-r.github.io/kwb.pkgbuild/articles/install.html). | ||
|
||
|
||
```r | ||
### Optionally: specify GitHub Personal Access Token (GITHUB_PAT) | ||
### See here why this might be important for you: | ||
### https://kwb-r.github.io/kwb.pkgbuild/articles/install.html#set-your-github_pat | ||
|
||
# Sys.setenv(GITHUB_PAT = "mysecret_access_token") | ||
|
||
# Install package "remotes" from CRAN | ||
if (! require("remotes")) { | ||
install.packages("remotes", repos = "https://cloud.r-project.org") | ||
} | ||
|
||
# Install KWB package 'kwb.utils' from GitHub | ||
|
||
remotes::install_github("kwb-r/kwb.utils") | ||
``` |