-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
see: r-lib/pkgdown#1136 and also deploy 📖 from "dev" branch
- Loading branch information
Showing
7 changed files
with
66 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,6 @@ | |
^README\.md$ | ||
^\.httr-oauth$ | ||
kwb.orcid.Rproj | ||
^index\.Rmd$ | ||
^index\.md$ | ||
^.*\.Rproj$ | ||
^\.travis\.yml$ |
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
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[![Appveyor build Status](https://ci.appveyor.com/api/projects/status/nu9yrfk4kwut60f7/branch/master?svg=true)](https://ci.appveyor.com/project/KWB-R/kwb-orcid/branch/master) | ||
[![Travis build Status](https://travis-ci.org/KWB-R/kwb.orcid.svg?branch=master)](https://travis-ci.org/KWB-R/kwb.orcid) | ||
[![codecov](https://codecov.io/github/KWB-R/kwb.orcid/branch/master/graphs/badge.svg)](https://codecov.io/github/KWB-R/kwb.orcid) | ||
[![Project Status](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) | ||
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/kwb.orcid)]() | ||
|
||
R package for checking ORCID use at KWB. It is a wrapper for the | ||
R package [rorcid](https://github.com/ropensci/rorcid). | ||
|
||
## Installation | ||
|
||
```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.orcid' from GitHub" | ||
|
||
remotes::install_github("kwb-r/kwb.orcid") | ||
``` |