-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
73 changed files
with
2,027 additions
and
842 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
^add_docs | ||
^doc$ | ||
^docs$ | ||
^pkgdown$ | ||
^TrialSPSS | ||
^TrialOMV | ||
^TrialOther | ||
^LICENSE$ | ||
^Meta$ | ||
^README\.Rmd$ | ||
^jmvReadWrite.svg$ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.github$ | ||
^\.lintr$ | ||
^.prepare4CRAN$ | ||
^_pkgdown\.yml$ | ||
^CONTRIBUTING.md$ | ||
^cran-comments\.md$ | ||
^CRAN-RELEASE$ | ||
^CRAN-SUBMISSION$ | ||
^codemeta\.json$ |
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,2 @@ | ||
# If you find this module useful, please donate to the jamovi project. | ||
patreon: jamovi |
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,6 +1,6 @@ | ||
# Run CI for R using https://eddelbuettel.github.io/r-ci/ | ||
|
||
name: ci | ||
name: CI | ||
|
||
on: | ||
push: | ||
|
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,28 @@ | ||
name: pkgcheck | ||
|
||
# This will cancel running jobs once a new run is triggered | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
# Manually trigger the Action under Actions/pkgcheck | ||
workflow_dispatch: | ||
# Run on every push to main | ||
push: | ||
branches: | ||
- main | ||
env: | ||
ACTIONS_RUNNER_DEBUG: true | ||
ACTIONS_STEP_DEBUG: true | ||
NO_CHKDIR: true | ||
|
||
jobs: | ||
pkgcheck: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: ropensci-review-tools/pkgcheck-action@main | ||
with: | ||
post-to-issue: false |
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,97 @@ | ||
# R-hub's generic GitHub Actions workflow file. It's canonical location is at | ||
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml | ||
# You can update this file to a newer version using the rhub2 package: | ||
# | ||
# rhub::rhub_setup() | ||
# | ||
# It is unlikely that you need to modify this file manually. | ||
|
||
name: R-hub | ||
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}" | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
config: | ||
description: 'A comma separated list of R-hub platforms to use.' | ||
type: string | ||
default: 'linux,windows,macos,macos-arm64' | ||
name: | ||
description: 'Run name.' | ||
type: string | ||
default: 'manually started run' | ||
id: | ||
description: 'Unique ID. You can leave this empty now.' | ||
type: string | ||
default: 'rhub' | ||
|
||
jobs: | ||
|
||
setup: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
containers: ${{ steps.rhub-setup.outputs.containers }} | ||
platforms: ${{ steps.rhub-setup.outputs.platforms }} | ||
|
||
steps: | ||
# NO NEED TO CHECKOUT HERE | ||
- uses: r-hub/actions/setup@v1 | ||
with: | ||
config: ${{ github.event.inputs.config }} | ||
id: rhub-setup | ||
|
||
linux-containers: | ||
needs: setup | ||
if: ${{ needs.setup.outputs.containers != '[]' }} | ||
runs-on: ubuntu-latest | ||
name: ${{ matrix.config.label }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: ${{ fromJson(needs.setup.outputs.containers) }} | ||
container: | ||
image: ${{ matrix.config.container }} | ||
|
||
steps: | ||
- uses: r-hub/actions/checkout@v1 | ||
- uses: r-hub/actions/platform-info@v1 | ||
with: | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
job-config: ${{ matrix.config.job-config }} | ||
- uses: r-hub/actions/setup-deps@v1 | ||
with: | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
job-config: ${{ matrix.config.job-config }} | ||
- uses: r-hub/actions/run-check@v1 | ||
with: | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
job-config: ${{ matrix.config.job-config }} | ||
|
||
other-platforms: | ||
needs: setup | ||
if: ${{ needs.setup.outputs.platforms != '[]' }} | ||
runs-on: ${{ matrix.config.os }} | ||
name: ${{ matrix.config.label }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: ${{ fromJson(needs.setup.outputs.platforms) }} | ||
|
||
steps: | ||
- uses: r-hub/actions/checkout@v1 | ||
- uses: r-hub/actions/setup-r@v1 | ||
with: | ||
job-config: ${{ matrix.config.job-config }} | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
- uses: r-hub/actions/platform-info@v1 | ||
with: | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
job-config: ${{ matrix.config.job-config }} | ||
- uses: r-hub/actions/setup-deps@v1 | ||
with: | ||
job-config: ${{ matrix.config.job-config }} | ||
token: ${{ secrets.RHUB_TOKEN }} | ||
- uses: r-hub/actions/run-check@v1 | ||
with: | ||
job-config: ${{ matrix.config.job-config }} | ||
token: ${{ secrets.RHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -42,7 +42,6 @@ pkgdown/ | |
|
||
# R Environment Variables | ||
.Renviron | ||
.Rbuildignore | ||
|
||
# pkgdown site | ||
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 |
---|---|---|
@@ -1 +1 @@ | ||
linters: lintr::linters_with_defaults(line_length_linter = NULL, object_name_linter = NULL, commented_code_linter = NULL, indentation_linter = NULL) | ||
linters: lintr::linters_with_defaults(line_length_linter = NULL, object_name_linter = NULL, commented_code_linter = NULL, indentation_linter = NULL, cyclocomp_linter(complexity_limit = 30L)) |
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,24 @@ | ||
# Contributing to jmvReadWrite | ||
|
||
## Opening issues | ||
|
||
The easiest way to note any behavioural curiosities or to request new features | ||
is by opening an [issue](https://github.com/sjentsch/jmvReadWrite/issues). | ||
|
||
|
||
## Development guidelines | ||
|
||
If you'd like to contribute changes to `jmvReadWrite`, the [GitHub | ||
flow](https://docs.github.com/en/get-started/quickstart/github-flow) is used | ||
for proposing, submitting, reviewing, and accepting changes. If you haven't | ||
done this before, there's a nice [overview of | ||
git](https://r-pkgs.org/git.html), as well as [best practices for submitting | ||
pull requests](http://r-pkgs.org/git.html#pr-make) in the R packages book by | ||
Hadley Wickham and Jenny Bryan. | ||
|
||
You are also welcome to contribute further checks / tests to `jmvReadWrite`. | ||
Please discuss any proposed new checks by opening an issue on the GitHub | ||
repository. | ||
|
||
The `jmvReadWrite` coding style follows the commonly used [tidyverse style | ||
guide](https://style.tidyverse.org/syntax.html#spacing). |
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,10 +1,9 @@ | ||
Package: jmvReadWrite | ||
Title: Read and Write 'jamovi' Files ('.omv') | ||
Version: 0.4.0 | ||
Author: Sebastian Jentschke [aut, cre] | ||
(<https://orcid.org/0000-0003-2576-5432>) | ||
Version: 0.4.6 | ||
Author: Sebastian Jentschke [aut, cre, cph] (<https://orcid.org/0000-0003-2576-5432>) | ||
Authors@R: | ||
person(given = "Sebastian", family = "Jentschke", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0003-2576-5432")) | ||
person(given = "Sebastian", family = "Jentschke", role = c("aut", "cre", "cph"), email = "[email protected]", comment = c(ORCID = "0000-0003-2576-5432")) | ||
Maintainer: Sebastian Jentschke <[email protected]> | ||
Description: The free and open a statistical spreadsheet 'jamovi' | ||
(<https://www.jamovi.org>) aims to make statistical analyses easy and | ||
|
@@ -13,12 +12,12 @@ Description: The free and open a statistical spreadsheet 'jamovi' | |
the data files 'jamovi' produces ('.omv') permits an easy transfer of | ||
data and analyses between 'jamovi' and R. | ||
License: AGPL-3 | ||
Language: en-GB | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 | ||
VignetteBuilder: knitr | ||
Language: en-GB | ||
URL: https://sjentsch.github.io/jmvReadWrite/ | ||
BugReports: https://github.com/sjentsch/jmvReadWrite/issues | ||
Depends: R (>= 3.5.0) | ||
|
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.