Skip to content

Commit ddb79f6

Browse files
author
Noam Ross
committed
Add Gemfile.lock
1 parent 3af0acf commit ddb79f6

File tree

3 files changed

+79
-0
lines changed

3 files changed

+79
-0
lines changed

.Rprofile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ if (file.exists(".env")) {
22
try(readRenviron(".env"), silent = TRUE)
33
}
44

5+
# Use RSPM to install packages if possible
56
if (Sys.info()[['sysname']] %in% c('Linux', 'Windows')) {
67
options(repos = c(RSPM = "https://packagemanager.rstudio.com/all/latest"))
78
} else {
@@ -12,6 +13,8 @@ if (Sys.info()[['sysname']] %in% c('Linux', 'Windows')) {
1213
# options(renv.config.mran.enabled = TRUE) ## TRUE by default
1314
}
1415

16+
17+
# Configure Renv
1518
options(
1619
renv.config.repos.override = getOption("repos"),
1720
renv.config.auto.snapshot = FALSE, ## Don't keep renv.lock updated automatically (messes up GitHub Actions)
@@ -20,4 +23,5 @@ options(
2023
renv.config.cache.enabled = TRUE ## Use the renv build cache to speed up install times
2124
)
2225

26+
# Activate the project on starting
2327
source("renv/activate.R")

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ gem 'jekyll', '~> 4.2'
66

77
group :jekyll_plugins do
88
gem 'jekyll-timeago', '~> 0.13.1'
9+
gem 'jekyll-paginate', '~> 1.1.0'
910
end

Gemfile.lock

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
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

0 commit comments

Comments
 (0)