Skip to content

Commit 0c92ae0

Browse files
authored
Deploy from Travis build 136 [ci skip]
Build URL: https://travis-ci.org/swcarpentry/r-novice-gapminder/builds/640128205 Commit: 7fb5b27
0 parents  commit 0c92ae0

File tree

302 files changed

+41764
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

302 files changed

+41764
-0
lines changed

.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
8+
[*.md]
9+
indent_size = 2
10+
indent_style = space
11+
max_line_length = 100 # Please keep this in sync with bin/lesson_check.py!
12+
13+
[*.r]
14+
max_line_length = 80
15+
16+
[*.py]
17+
indent_size = 4
18+
indent_style = space
19+
max_line_length = 79
20+
21+
[*.sh]
22+
end_of_line = lf
23+
24+
[Makefile]
25+
indent_style = tab

.mailmap

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
Abigail Cabunoc Mayes <[email protected]>
2+
Abigail Cabunoc Mayes <[email protected]> <[email protected]>
3+
Andrew Lonsdale <[email protected]>
4+
Benjamin D. Best <[email protected]>
5+
Bernhard Konrad <[email protected]>
6+
Bill Mills <[email protected]>
7+
Conrad Leonard <[email protected]>
8+
9+
Erin Becker <[email protected]>
10+
Evan P. Williamson <[email protected]>
11+
François Michonneau <[email protected]>
12+
13+
Hannah Kronenberg <[email protected]>
14+
Helen Lindsay <[email protected]>
15+
Henry Senyondo <[email protected]>
16+
17+
18+
Jeffrey Arnold <[email protected]>
19+
Jeffrey Oliver <[email protected]>
20+
Jeffrey Oliver <[email protected]>
21+
Katherine Koziar <[email protected]>
22+
Kathe Todd-Brown <[email protected]>
23+
Kieran Samuk <[email protected]>
24+
Kyriakos Chatzidimitriou <[email protected]>
25+
Lachlan Deer <[email protected]>
26+
Lisa Breckels <[email protected]>
27+
28+
Martin J. Hadley <[email protected]>
29+
Mateusz Kuzak <[email protected]>
30+
31+
Mik Black <[email protected]>
32+
33+
34+
Nora Mitchell <[email protected]>
35+
Pip Griffin <[email protected]>
36+
37+
38+
Rebecca Lange <[email protected]>
39+
40+
41+
Robert Bagchi <[email protected]>
42+
Robert McDonald <[email protected]>
43+
Robert Syme <[email protected]>
44+
45+
Vince Polito <[email protected]>
46+
Willem Ligtenberg <[email protected]>
47+
Yuka Takemon <[email protected]>
48+
zz-Daniel <[email protected]>

.travis.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
2+
# Default configuration for use with tic package
3+
# Usually you shouldn't need to change the first part of the file
4+
5+
# DO NOT CHANGE THE CODE BELOW
6+
before_install:
7+
- sudo apt-get install libgit2-dev
8+
- rvm install 2.5.3
9+
- rvm 2.5.3 do ruby -S gem install jekyll
10+
- sudo apt-get install -y linkchecker
11+
- mkdir -p ~/.linkchecker
12+
- echo -e '[checking]\nsslverify=0' > ~/.linkchecker/linkcheckerrc
13+
- R -q -e 'install.packages(c("remotes", "curl")); remotes::install_github("ropenscilabs/tic"); tic::prepare_all_stages(); tic::before_install()'
14+
install: R -q -e 'tic::install()'
15+
after_install: R -q -e 'tic::after_install()'
16+
before_script: R -q -e 'tic::before_script()'
17+
script: R -q -e 'tic::script()'
18+
after_success: R -q -e 'tic::after_success()'
19+
after_failure: R -q -e 'tic::after_failure()'
20+
before_deploy: R -q -e 'tic::before_deploy()'
21+
deploy:
22+
provider: script
23+
script: R -q -e 'tic::deploy()'
24+
on:
25+
all_branches: true
26+
after_deploy: R -q -e 'tic::after_deploy()'
27+
after_script: R -q -e 'tic::after_script()'
28+
# DO NOT CHANGE THE CODE ABOVE
29+
30+
# Custom parts:
31+
32+
# Header
33+
language: r
34+
sudo: false
35+
dist: trusty
36+
cache: packages
37+
latex: false
38+
39+
#env
40+
env:
41+
global:
42+
- _R_CHECK_FORCE_SUGGESTS_=false
43+
- MAKEFLAGS="-j 2"
44+
45+
#services
46+
services:

.update-copyright.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[project]
2+
vcs: Git
3+
4+
[files]
5+
authors: yes
6+
files: no

0 commit comments

Comments
 (0)