diff --git a/.ruby-version b/.ruby-version index 9c25013d..47b322c9 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.3.6 +3.4.1 diff --git a/.tool-versions b/.tool-versions index 5aa8e0c3..041df9aa 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -ruby 3.3.6 +ruby 3.4.1 diff --git a/Dockerfile b/Dockerfile index 7ec33c21..d52cd1de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.3.6 +FROM ruby:3.4.1 ENV LANG=C.UTF-8 ENV ENABLE_SERVICE_WORKER=true diff --git a/Dockerfile-alpine b/Dockerfile-alpine index 1d258221..67b3d968 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -1,4 +1,4 @@ -FROM ruby:3.3.6-alpine +FROM ruby:3.4.1-alpine ENV LANG=C.UTF-8 ENV ENABLE_SERVICE_WORKER=true diff --git a/Gemfile b/Gemfile index 9079b2c9..59403526 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ source 'https://rubygems.org' -ruby '3.3.6' +ruby '3.4.1' gem 'activesupport', require: false gem 'html-pipeline' diff --git a/Gemfile.lock b/Gemfile.lock index 0707225d..b3a40343 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -36,7 +36,8 @@ GEM exifr (1.4.0) ffi (1.15.5) fspath (3.1.2) - highline (2.0.3) + highline (3.1.2) + reline html-pipeline (2.14.3) activesupport (>= 2) nokogiri (>= 1.4) @@ -53,6 +54,7 @@ GEM image_optim (~> 0.19) image_size (3.3.0) in_threads (1.6.0) + io-console (0.8.0) logger (1.6.2) method_source (1.0.0) mini_portile2 (2.8.8) @@ -88,6 +90,8 @@ GEM rb-inotify (0.10.1) ffi (~> 1.0) redcarpet (3.6.0) + reline (0.6.0) + io-console (~> 0.5) rexml (3.3.9) rouge (1.11.1) rr (3.1.1) @@ -187,7 +191,7 @@ DEPENDENCIES yajl-ruby RUBY VERSION - ruby 3.3.6p108 + ruby 3.4.1p0 BUNDLED WITH 2.4.6 diff --git a/test/lib/docs/core/manifest_test.rb b/test/lib/docs/core/manifest_test.rb index 60d5ba90..1a06cf28 100644 --- a/test/lib/docs/core/manifest_test.rb +++ b/test/lib/docs/core/manifest_test.rb @@ -64,7 +64,7 @@ class ManifestTest < Minitest::Spec it "includes the doc's meta representation" do json = manifest.as_json assert_equal 1, json.length - assert_equal "{\"name\"=>\"Test\", \"db_size\"=>776533, :attribution=>\"foo\", :alias=>nil}", json[0].to_s + assert_equal "{\"name\" => \"Test\", \"db_size\" => 776533, attribution: \"foo\", alias: nil}", json[0].to_s end end