File tree Expand file tree Collapse file tree 3 files changed +79
-0
lines changed Expand file tree Collapse file tree 3 files changed +79
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ if (file.exists(".env")) {
2
2
try(readRenviron(" .env" ), silent = TRUE )
3
3
}
4
4
5
+ # Use RSPM to install packages if possible
5
6
if (Sys.info()[[' sysname' ]] %in% c(' Linux' , ' Windows' )) {
6
7
options(repos = c(RSPM = " https://packagemanager.rstudio.com/all/latest" ))
7
8
} else {
@@ -12,6 +13,8 @@ if (Sys.info()[['sysname']] %in% c('Linux', 'Windows')) {
12
13
# options(renv.config.mran.enabled = TRUE) ## TRUE by default
13
14
}
14
15
16
+
17
+ # Configure Renv
15
18
options(
16
19
renv.config.repos.override = getOption(" repos" ),
17
20
renv.config.auto.snapshot = FALSE , # # Don't keep renv.lock updated automatically (messes up GitHub Actions)
@@ -20,4 +23,5 @@ options(
20
23
renv.config.cache.enabled = TRUE # # Use the renv build cache to speed up install times
21
24
)
22
25
26
+ # Activate the project on starting
23
27
source(" renv/activate.R" )
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ gem 'jekyll', '~> 4.2'
6
6
7
7
group :jekyll_plugins do
8
8
gem 'jekyll-timeago' , '~> 0.13.1'
9
+ gem 'jekyll-paginate' , '~> 1.1.0'
9
10
end
Original file line number Diff line number Diff line change
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ addressable (2.8.0 )
5
+ public_suffix (>= 2.0.2 , < 5.0 )
6
+ colorator (1.1.0 )
7
+ concurrent-ruby (1.1.9 )
8
+ em-websocket (0.5.3 )
9
+ eventmachine (>= 0.12.9 )
10
+ http_parser.rb (~> 0 )
11
+ eventmachine (1.2.7 )
12
+ ffi (1.15.5 )
13
+ forwardable-extended (2.6.0 )
14
+ http_parser.rb (0.8.0 )
15
+ i18n (1.10.0 )
16
+ concurrent-ruby (~> 1.0 )
17
+ jekyll (4.2.1 )
18
+ addressable (~> 2.4 )
19
+ colorator (~> 1.0 )
20
+ em-websocket (~> 0.5 )
21
+ i18n (~> 1.0 )
22
+ jekyll-sass-converter (~> 2.0 )
23
+ jekyll-watch (~> 2.0 )
24
+ kramdown (~> 2.3 )
25
+ kramdown-parser-gfm (~> 1.0 )
26
+ liquid (~> 4.0 )
27
+ mercenary (~> 0.4.0 )
28
+ pathutil (~> 0.9 )
29
+ rouge (~> 3.0 )
30
+ safe_yaml (~> 1.0 )
31
+ terminal-table (~> 2.0 )
32
+ jekyll-paginate (1.1.0 )
33
+ jekyll-sass-converter (2.2.0 )
34
+ sassc (> 2.0.1 , < 3.0 )
35
+ jekyll-timeago (0.13.1 )
36
+ mini_i18n (>= 0.8.0 )
37
+ jekyll-watch (2.2.1 )
38
+ listen (~> 3.0 )
39
+ kramdown (2.3.1 )
40
+ rexml
41
+ kramdown-parser-gfm (1.1.0 )
42
+ kramdown (~> 2.0 )
43
+ liquid (4.0.3 )
44
+ listen (3.7.1 )
45
+ rb-fsevent (~> 0.10 , >= 0.10.3 )
46
+ rb-inotify (~> 0.9 , >= 0.9.10 )
47
+ mercenary (0.4.0 )
48
+ mini_i18n (0.8.0 )
49
+ pathutil (0.16.2 )
50
+ forwardable-extended (~> 2.6 )
51
+ public_suffix (4.0.6 )
52
+ rb-fsevent (0.11.1 )
53
+ rb-inotify (0.10.1 )
54
+ ffi (~> 1.0 )
55
+ rexml (3.2.5 )
56
+ rouge (3.28.0 )
57
+ safe_yaml (1.0.5 )
58
+ sassc (2.4.0 )
59
+ ffi (~> 1.9 )
60
+ terminal-table (2.0.0 )
61
+ unicode-display_width (~> 1.1 , >= 1.1.1 )
62
+ unicode-display_width (1.8.0 )
63
+
64
+ PLATFORMS
65
+ x86_64-darwin-21
66
+ x86_64-linux
67
+
68
+ DEPENDENCIES
69
+ jekyll (~> 4.2 )
70
+ jekyll-paginate (~> 1.1.0 )
71
+ jekyll-timeago (~> 0.13.1 )
72
+
73
+ BUNDLED WITH
74
+ 2.3.8
You can’t perform that action at this time.
0 commit comments