Skip to content

Commit 367af74

Browse files
authored
Merge pull request #2393 from freeCodeCamp/renovate/ruby-3.x
chore(deps): update dependency ruby to v3.4.1
2 parents ec5d57c + 746f67c commit 367af74

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.6
1+
3.4.1

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby 3.3.6
1+
ruby 3.4.1

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3.6
1+
FROM ruby:3.4.1
22
ENV LANG=C.UTF-8
33
ENV ENABLE_SERVICE_WORKER=true
44

Dockerfile-alpine

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3.6-alpine
1+
FROM ruby:3.4.1-alpine
22

33
ENV LANG=C.UTF-8
44
ENV ENABLE_SERVICE_WORKER=true

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://rubygems.org'
2-
ruby '3.3.6'
2+
ruby '3.4.1'
33

44
gem 'activesupport', require: false
55
gem 'html-pipeline'

Gemfile.lock

+6-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ GEM
3636
exifr (1.4.0)
3737
ffi (1.15.5)
3838
fspath (3.1.2)
39-
highline (2.0.3)
39+
highline (3.1.2)
40+
reline
4041
html-pipeline (2.14.3)
4142
activesupport (>= 2)
4243
nokogiri (>= 1.4)
@@ -53,6 +54,7 @@ GEM
5354
image_optim (~> 0.19)
5455
image_size (3.3.0)
5556
in_threads (1.6.0)
57+
io-console (0.8.0)
5658
logger (1.6.2)
5759
method_source (1.0.0)
5860
mini_portile2 (2.8.8)
@@ -88,6 +90,8 @@ GEM
8890
rb-inotify (0.10.1)
8991
ffi (~> 1.0)
9092
redcarpet (3.6.0)
93+
reline (0.6.0)
94+
io-console (~> 0.5)
9195
rexml (3.3.9)
9296
rouge (1.11.1)
9397
rr (3.1.1)
@@ -187,7 +191,7 @@ DEPENDENCIES
187191
yajl-ruby
188192

189193
RUBY VERSION
190-
ruby 3.3.6p108
194+
ruby 3.4.1p0
191195

192196
BUNDLED WITH
193197
2.4.6

test/lib/docs/core/manifest_test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class ManifestTest < Minitest::Spec
6464
it "includes the doc's meta representation" do
6565
json = manifest.as_json
6666
assert_equal 1, json.length
67-
assert_equal "{\"name\"=>\"Test\", \"db_size\"=>776533, :attribution=>\"foo\", :alias=>nil}", json[0].to_s
67+
assert_equal "{\"name\" => \"Test\", \"db_size\" => 776533, attribution: \"foo\", alias: nil}", json[0].to_s
6868
end
6969
end
7070

0 commit comments

Comments
 (0)