Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.6
3.4.1
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.3.6
ruby 3.4.1
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.6
FROM ruby:3.4.1
ENV LANG=C.UTF-8
ENV ENABLE_SERVICE_WORKER=true

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'
ruby '3.3.6'
ruby '3.4.1'

gem 'activesupport', require: false
gem 'html-pipeline'
Expand Down
8 changes: 6 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -187,7 +191,7 @@ DEPENDENCIES
yajl-ruby

RUBY VERSION
ruby 3.3.6p108
ruby 3.4.1p0

BUNDLED WITH
2.4.6
2 changes: 1 addition & 1 deletion test/lib/docs/core/manifest_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading