-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from pepkit/dev
v0.5.0
- Loading branch information
Showing
127 changed files
with
1,769 additions
and
3,182 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 |
---|---|---|
|
@@ -5,4 +5,9 @@ | |
^doc$ | ||
^docs$ | ||
^Meta$ | ||
^update_examples.sh$ | ||
^update_examples.sh$ | ||
|
||
|
||
CNAME | ||
test.sh | ||
.github |
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,48 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: 'Repo branch to checkout' | ||
required: false | ||
default: 'master' | ||
|
||
name: Deploy-package-documentation | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: macos-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v23 | ||
with: | ||
# The branch, tag or SHA to checkout. When checking out the repository that | ||
# triggered a workflow, this defaults to the reference or SHA for that event. | ||
# Otherwise, uses the default branch. | ||
ref: ${{ github.event.inputs.branch }} | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
|
||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
- name: Deploy to GitHub pages | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/[email protected] | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
folder: docs |
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 @@ | ||
pepr.databio.org |
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,11 +1,11 @@ | ||
Package: pepr | ||
Type: Package | ||
Title: Reading Portable Encapsulated Projects | ||
Version: 0.4.0 | ||
Date: 2020-10-15 | ||
Version: 0.5.0 | ||
Date: 2021-06-10 | ||
Authors@R: c(person("Nathan", "Sheffield", email = "[email protected]", | ||
role = c("aut", "cph")),person("Michal","Stolarczyk",email="[email protected]",role=c("aut","cre"))) | ||
Maintainer: Michal Stolarczyk <[email protected]> | ||
Maintainer: Nathan Sheffield <[email protected]> | ||
Description: A PEP, or Portable Encapsulated Project, is a dataset that | ||
subscribes to the PEP structure for organizing metadata. It is written using | ||
a simple YAML + CSV format, it is your one-stop solution to metadata | ||
|
@@ -16,12 +16,15 @@ Imports: | |
stringr, | ||
pryr, | ||
data.table, | ||
methods | ||
methods, | ||
RCurl | ||
Suggests: | ||
knitr, | ||
testthat, | ||
rmarkdown | ||
rmarkdown, | ||
curl | ||
VignetteBuilder: knitr | ||
License: BSD_2_clause + file LICENSE | ||
BugReports: https://github.com/pepkit/pepr | ||
RoxygenNote: 7.1.0 | ||
RoxygenNote: 7.2.3 | ||
Encoding: UTF-8 |
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
Oops, something went wrong.