Skip to content

Commit cc2d5d7

Browse files
authored
Initial commit
0 parents  commit cc2d5d7

File tree

19 files changed

+868
-0
lines changed

19 files changed

+868
-0
lines changed

.Rbuildignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$
3+
^\.travis\.yml$

.editorconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Unix-style newlines with a newline ending every file
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
9+
# Matches multiple files with brace expansion notation
10+
# Set default charset
11+
[*]
12+
charset = utf-8
13+
14+
[*.{cpp,h,qml,json,md}]
15+
indent_style = tab
16+
indent_size = 4
17+
18+
[*.R]
19+
indent_style = space
20+
indent_size = 2

.github/workflows/i18nCheck.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
push:
3+
paths: ['**.R', '**.qml', 'tests/**', 'inst/**', '**.Rd', '**.c', '**.cpp', '**.h', '**.hpp', '**.yml']
4+
5+
pull_request:
6+
paths: ['**.R', '**.qml', 'tests/**', 'inst/**', '**.Rd', '**.c', '**.cpp', '**.h', '**.hpp', '**.yml']
7+
8+
workflow_dispatch:
9+
10+
name: i18n-check
11+
12+
jobs:
13+
i18n-check:
14+
uses: jasp-stats/jasp-actions/.github/workflows/i18nCheck.yml@master

.github/workflows/translations.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
#schedule:
3+
# - cron: '*/5 * * * *'
4+
5+
workflow_dispatch:
6+
7+
name: generate-translations
8+
9+
jobs:
10+
generate-translations:
11+
runs-on: ubuntu-latest
12+
env:
13+
REPO_KEY: ${{ secrets.REPOS_KEY }}
14+
WEBLATE_KEY: ${{ secrets.WEBLATE_KEY }}
15+
QML_REPO: jasptestmodule-qml
16+
R_REPO: jasttestmodule-r
17+
18+
steps:
19+
- uses: jasp-stats/jasp-actions/wlcLock@master
20+
21+
- uses: jasp-stats/jasp-actions/translations@master

.github/workflows/unittests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
paths: ['**.R', 'tests/**', '**.Rd', '**.c', '**.cpp', '**.h', '**.hpp', 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win', '**.yml']
4+
pull_request:
5+
paths: ['**.R', 'tests/**', '**.Rd', '**.c', '**.cpp', '**.h', '**.hpp', 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win']
6+
schedule:
7+
- cron: '13 12 * * 1-5'
8+
9+
name: unit-tests
10+
11+
jobs:
12+
13+
unit-tests:
14+
15+
uses: jasp-stats/jasp-actions/.github/workflows/unittests.yml@master
16+
with:
17+
needs_JAGS: false
18+
needs_igraph: false

.gitignore

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Compiled Object files
2+
*.slo
3+
*.lo
4+
*.o
5+
6+
# Compiled Dynamic libraries
7+
*.so
8+
*.dylib
9+
*.dll
10+
11+
# History files
12+
.Rhistory
13+
.Rapp.history
14+
15+
# Session Data files
16+
.RData
17+
18+
# User-specific files
19+
.Ruserdata
20+
21+
# Example code in package build process
22+
*-Ex.R
23+
24+
# Output files from R CMD build
25+
/*.tar.gz
26+
27+
# Output files from R CMD check
28+
/*.Rcheck/
29+
30+
# produced vignettes
31+
vignettes/*.html
32+
vignettes/*.pdf
33+
34+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
35+
.httr-oauth
36+
37+
# knitr and R markdown default cache directories
38+
*_cache/
39+
/cache/
40+
41+
# Temporary files created by R markdown
42+
*.utf8.md
43+
*.knit.md
44+
45+
# R Environment Variables
46+
.Renviron
47+
48+
# pkgdown site
49+
docs/
50+
51+
# translation temp files
52+
po/*~
53+
54+
# OSX files
55+
*.DS_Store
56+
Thumbs.db
57+
58+
# RStudio files
59+
.Rproj.user

DESCRIPTION

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Package: jaspModule
2+
Type: Package
3+
Title: A module for JASP
4+
Version: 0.1.0
5+
Date: 2020-10-15
6+
Author: JASP Team
7+
Website: jasp-stats.org
8+
Maintainer: JASP Team <[email protected]>
9+
Description: This module offers analyses.
10+
License: GPL (>= 2)
11+
Encoding: UTF-8
12+
Imports:
13+
jaspBase,
14+
jaspGraphs
15+
Suggests:
16+
testthat
17+
Remotes:
18+
jasp-stats/jaspBase,
19+
jasp-stats/jaspGraphs

0 commit comments

Comments
 (0)