Skip to content

Commit 5ca350a

Browse files
committed
Add bundler compose service, remove dependabot PRs and update gems
1 parent 02c35bb commit 5ca350a

File tree

3 files changed

+35
-33
lines changed

3 files changed

+35
-33
lines changed

Diff for: .github/dependabot.yml

-11
This file was deleted.

Diff for: Gemfile.lock

+27-21
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,44 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (6.0.6.1)
5-
concurrent-ruby (~> 1.0, >= 1.0.2)
6-
i18n (>= 0.7, < 2)
7-
minitest (~> 5.1)
8-
tzinfo (~> 1.1)
9-
zeitwerk (~> 2.2, >= 2.2.2)
4+
activesupport (7.2.1)
5+
base64
6+
bigdecimal
7+
concurrent-ruby (~> 1.0, >= 1.3.1)
8+
connection_pool (>= 2.2.5)
9+
drb
10+
i18n (>= 1.6, < 2)
11+
logger (>= 1.4.2)
12+
minitest (>= 5.1)
13+
securerandom (>= 0.3)
14+
tzinfo (~> 2.0, >= 2.0.5)
1015
addressable (2.8.7)
1116
public_suffix (>= 2.0.2, < 7.0)
17+
base64 (0.2.0)
18+
bigdecimal (3.1.8)
1219
coffee-script (2.4.1)
1320
coffee-script-source
1421
execjs
1522
coffee-script-source (1.12.2)
1623
colorator (1.1.0)
1724
commonmarker (0.23.10)
1825
concurrent-ruby (1.3.4)
26+
connection_pool (2.4.1)
1927
csv (3.3.0)
2028
dnsruby (1.72.2)
2129
simpleidn (~> 0.2.1)
30+
drb (2.2.1)
2231
em-websocket (0.5.3)
2332
eventmachine (>= 0.12.9)
2433
http_parser.rb (~> 0)
2534
ethon (0.16.0)
2635
ffi (>= 1.15.0)
2736
eventmachine (1.2.7)
2837
execjs (2.9.1)
29-
faraday (2.10.1)
30-
faraday-net_http (>= 2.0, < 3.2)
38+
faraday (2.11.0)
39+
faraday-net_http (>= 2.0, < 3.4)
3140
logger
32-
faraday-net_http (3.1.1)
41+
faraday-net_http (3.3.0)
3342
net-http
3443
ffi (1.17.0)
3544
ffi (1.17.0-x86_64-linux-gnu)
@@ -91,7 +100,7 @@ GEM
91100
activesupport (>= 2)
92101
nokogiri (>= 1.4)
93102
http_parser.rb (0.8.0)
94-
i18n (1.14.5)
103+
i18n (1.14.6)
95104
concurrent-ruby (~> 1.0)
96105
jekyll (3.10.0)
97106
addressable (~> 2.4)
@@ -211,14 +220,14 @@ GEM
211220
listen (3.9.0)
212221
rb-fsevent (~> 0.10, >= 0.10.3)
213222
rb-inotify (~> 0.9, >= 0.9.10)
214-
logger (1.6.0)
223+
logger (1.6.1)
215224
mercenary (0.3.6)
216225
mini_portile2 (2.8.7)
217226
minima (2.5.1)
218227
jekyll (>= 3.5, < 5.0)
219228
jekyll-feed (~> 0.9)
220229
jekyll-seo-tag (~> 2.1)
221-
minitest (5.24.1)
230+
minitest (5.25.1)
222231
net-http (0.4.1)
223232
uri
224233
nokogiri (1.16.7)
@@ -236,8 +245,7 @@ GEM
236245
rb-fsevent (0.11.2)
237246
rb-inotify (0.11.1)
238247
ffi (~> 1.0)
239-
rexml (3.3.5)
240-
strscan
248+
rexml (3.3.7)
241249
rouge (3.30.0)
242250
rubyzip (2.3.2)
243251
safe_yaml (1.0.5)
@@ -249,19 +257,17 @@ GEM
249257
sawyer (0.9.2)
250258
addressable (>= 2.3.5)
251259
faraday (>= 0.17.3, < 3)
260+
securerandom (0.3.1)
252261
simpleidn (0.2.3)
253-
strscan (3.1.0)
254262
terminal-table (1.8.0)
255263
unicode-display_width (~> 1.1, >= 1.1.1)
256-
thread_safe (0.3.6)
257264
typhoeus (1.4.1)
258265
ethon (>= 0.9.0)
259-
tzinfo (1.2.9)
260-
thread_safe (~> 0.1)
266+
tzinfo (2.0.6)
267+
concurrent-ruby (~> 1.0)
261268
unicode-display_width (1.8.0)
262-
uri (0.13.0)
269+
uri (0.13.1)
263270
webrick (1.8.1)
264-
zeitwerk (2.6.17)
265271

266272
PLATFORMS
267273
ruby
@@ -276,4 +282,4 @@ DEPENDENCIES
276282
wdm (~> 0.1.1)
277283

278284
BUNDLED WITH
279-
2.3.4
285+
2.5.16

Diff for: docker-compose.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,11 @@ services:
77
ports:
88
- 4000:4000
99
volumes:
10-
- .:/srv/jekyll
10+
- .:/srv/jekyll
11+
12+
bundle:
13+
image: ruby:3
14+
entrypoint: bundle
15+
working_dir: /app
16+
volumes:
17+
- .:/app

0 commit comments

Comments
 (0)