aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.rubocop.yml2
-rw-r--r--.ruby-version2
-rw-r--r--Dockerfile4
-rw-r--r--Gemfile2
-rw-r--r--Gemfile.lock288
5 files changed, 161 insertions, 137 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 89339fe..ace564d 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -20,7 +20,7 @@ AllCops:
##
# Plugins
-require:
+plugins:
- rubocop-rails
- rubocop-performance
- rubocop-minitest
diff --git a/.ruby-version b/.ruby-version
index 408069a..e3cc07a 100644
--- a/.ruby-version
+++ b/.ruby-version
@@ -1 +1 @@
-ruby-3.4.1
+ruby-3.4.4
diff --git a/Dockerfile b/Dockerfile
index c1c0d2a..6ebc427 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:1
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
-ARG RUBY_VERSION=3.4.1
+ARG RUBY_VERSION=3.4.4
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim AS base
# Rails app lives here
@@ -19,7 +19,7 @@ FROM base AS build
# Install packages needed to build gems
RUN apt-get update -qq && \
- apt-get install --no-install-recommends -y build-essential git libvips pkg-config
+ apt-get install --no-install-recommends -y build-essential git libvips pkg-config libyaml-dev
# Install application gems
COPY Gemfile Gemfile.lock ./
diff --git a/Gemfile b/Gemfile
index 5a053fa..6586897 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,7 +2,7 @@
source 'https://rubygems.org'
-ruby '3.4.1'
+ruby '3.4.4'
# Rails itself :)
gem 'rails', '~> 8'
diff --git a/Gemfile.lock b/Gemfile.lock
index c359ac9..f2eecad 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -8,29 +8,29 @@ GIT
GEM
remote: https://rubygems.org/
specs:
- actioncable (8.0.1)
- actionpack (= 8.0.1)
- activesupport (= 8.0.1)
+ actioncable (8.0.2)
+ actionpack (= 8.0.2)
+ activesupport (= 8.0.2)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
zeitwerk (~> 2.6)
- actionmailbox (8.0.1)
- actionpack (= 8.0.1)
- activejob (= 8.0.1)
- activerecord (= 8.0.1)
- activestorage (= 8.0.1)
- activesupport (= 8.0.1)
+ actionmailbox (8.0.2)
+ actionpack (= 8.0.2)
+ activejob (= 8.0.2)
+ activerecord (= 8.0.2)
+ activestorage (= 8.0.2)
+ activesupport (= 8.0.2)
mail (>= 2.8.0)
- actionmailer (8.0.1)
- actionpack (= 8.0.1)
- actionview (= 8.0.1)
- activejob (= 8.0.1)
- activesupport (= 8.0.1)
+ actionmailer (8.0.2)
+ actionpack (= 8.0.2)
+ actionview (= 8.0.2)
+ activejob (= 8.0.2)
+ activesupport (= 8.0.2)
mail (>= 2.8.0)
rails-dom-testing (~> 2.2)
- actionpack (8.0.1)
- actionview (= 8.0.1)
- activesupport (= 8.0.1)
+ actionpack (8.0.2)
+ actionview (= 8.0.2)
+ activesupport (= 8.0.2)
nokogiri (>= 1.8.5)
rack (>= 2.2.4)
rack-session (>= 1.0.1)
@@ -38,35 +38,35 @@ GEM
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
useragent (~> 0.16)
- actiontext (8.0.1)
- actionpack (= 8.0.1)
- activerecord (= 8.0.1)
- activestorage (= 8.0.1)
- activesupport (= 8.0.1)
+ actiontext (8.0.2)
+ actionpack (= 8.0.2)
+ activerecord (= 8.0.2)
+ activestorage (= 8.0.2)
+ activesupport (= 8.0.2)
globalid (>= 0.6.0)
nokogiri (>= 1.8.5)
- actionview (8.0.1)
- activesupport (= 8.0.1)
+ actionview (8.0.2)
+ activesupport (= 8.0.2)
builder (~> 3.1)
erubi (~> 1.11)
rails-dom-testing (~> 2.2)
rails-html-sanitizer (~> 1.6)
- activejob (8.0.1)
- activesupport (= 8.0.1)
+ activejob (8.0.2)
+ activesupport (= 8.0.2)
globalid (>= 0.3.6)
- activemodel (8.0.1)
- activesupport (= 8.0.1)
- activerecord (8.0.1)
- activemodel (= 8.0.1)
- activesupport (= 8.0.1)
+ activemodel (8.0.2)
+ activesupport (= 8.0.2)
+ activerecord (8.0.2)
+ activemodel (= 8.0.2)
+ activesupport (= 8.0.2)
timeout (>= 0.4.0)
- activestorage (8.0.1)
- actionpack (= 8.0.1)
- activejob (= 8.0.1)
- activerecord (= 8.0.1)
- activesupport (= 8.0.1)
+ activestorage (8.0.2)
+ actionpack (= 8.0.2)
+ activejob (= 8.0.2)
+ activerecord (= 8.0.2)
+ activesupport (= 8.0.2)
marcel (~> 1.0)
- activesupport (8.0.1)
+ activesupport (8.0.2)
base64
benchmark (>= 0.3)
bigdecimal
@@ -81,16 +81,16 @@ GEM
uri (>= 0.13.1)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
- ast (2.4.2)
+ ast (2.4.3)
awesome_print (1.9.2)
- base64 (0.2.0)
+ base64 (0.3.0)
bcrypt (3.1.20)
- benchmark (0.4.0)
- bigdecimal (3.1.9)
+ benchmark (0.4.1)
+ bigdecimal (3.2.2)
bindex (0.8.1)
- bootsnap (1.18.4)
+ bootsnap (1.18.6)
msgpack (~> 1.2)
- brakeman (6.2.2)
+ brakeman (7.0.2)
racc
builder (3.3.0)
bundle-audit (0.1.0)
@@ -107,36 +107,44 @@ GEM
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
- concurrent-ruby (1.3.4)
- connection_pool (2.4.1)
+ concurrent-ruby (1.3.5)
+ connection_pool (2.5.3)
crass (1.0.6)
- csv (3.3.2)
+ csv (3.3.5)
date (3.4.1)
- debug (1.10.0)
+ debug (1.11.0)
irb (~> 1.10)
reline (>= 0.3.8)
- drb (2.2.1)
+ drb (2.2.3)
+ erb (5.0.1)
erubi (1.13.1)
- ffi (1.17.0)
+ ffi (1.17.2-aarch64-linux-gnu)
+ ffi (1.17.2-arm-linux-gnu)
+ ffi (1.17.2-arm64-darwin)
+ ffi (1.17.2-x86-linux-gnu)
+ ffi (1.17.2-x86_64-darwin)
+ ffi (1.17.2-x86_64-linux-gnu)
globalid (1.2.1)
activesupport (>= 6.1)
- i18n (1.14.6)
+ i18n (1.14.7)
concurrent-ruby (~> 1.0)
- image_processing (1.13.0)
- mini_magick (>= 4.9.5, < 5)
+ image_processing (1.14.0)
+ mini_magick (>= 4.9.5, < 6)
ruby-vips (>= 2.0.17, < 3)
importmap-rails (2.1.0)
actionpack (>= 6.0.0)
activesupport (>= 6.0.0)
railties (>= 6.0.0)
io-console (0.8.0)
- irb (1.14.3)
+ irb (1.15.2)
+ pp (>= 0.6.0)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
- json (2.9.1)
- language_server-protocol (3.17.0.3)
- logger (1.6.4)
- loofah (2.23.1)
+ json (2.12.2)
+ language_server-protocol (3.17.0.5)
+ lint_roller (1.1.0)
+ logger (1.7.0)
+ loofah (2.24.1)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
mail (2.8.1)
@@ -145,65 +153,73 @@ GEM
net-pop
net-smtp
marcel (1.0.4)
- matrix (0.4.2)
- mini_magick (4.13.2)
+ matrix (0.4.3)
+ mini_magick (5.2.0)
+ benchmark
+ logger
mini_mime (1.1.5)
- mini_portile2 (2.8.8)
- minitest (5.25.4)
- msgpack (1.7.5)
- net-imap (0.5.4)
+ mini_portile2 (2.8.9)
+ minitest (5.25.5)
+ msgpack (1.8.0)
+ net-imap (0.5.9)
date
net-protocol
net-protocol (0.2.2)
timeout
- net-smtp (0.5.0)
+ net-smtp (0.5.1)
+ net-protocol
nio4r (2.7.4)
- nokogiri (1.18.0)
+ nokogiri (1.18.8)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
- nokogiri (1.18.0-aarch64-linux-gnu)
+ nokogiri (1.18.8-aarch64-linux-gnu)
racc (~> 1.4)
- nokogiri (1.18.0-arm-linux-gnu)
+ nokogiri (1.18.8-arm-linux-gnu)
racc (~> 1.4)
- nokogiri (1.18.0-arm64-darwin)
+ nokogiri (1.18.8-arm64-darwin)
racc (~> 1.4)
- nokogiri (1.18.0-x86_64-darwin)
+ nokogiri (1.18.8-x86_64-darwin)
racc (~> 1.4)
- nokogiri (1.18.0-x86_64-linux-gnu)
+ nokogiri (1.18.8-x86_64-linux-gnu)
racc (~> 1.4)
- parallel (1.26.3)
- parser (3.3.6.0)
+ parallel (1.27.0)
+ parser (3.3.8.0)
ast (~> 2.4.1)
racc
- psych (5.2.2)
+ pp (0.6.2)
+ prettyprint
+ prettyprint (0.2.0)
+ prism (1.4.0)
+ psych (5.2.6)
date
stringio
- public_suffix (6.0.1)
- puma (6.5.0)
+ public_suffix (6.0.2)
+ puma (6.6.0)
nio4r (~> 2.0)
racc (1.8.1)
- rack (3.1.8)
- rack-session (2.0.0)
+ rack (3.1.16)
+ rack-session (2.1.1)
+ base64 (>= 0.1.0)
rack (>= 3.0.0)
rack-test (2.2.0)
rack (>= 1.3)
rackup (2.2.1)
rack (>= 3)
- rails (8.0.1)
- actioncable (= 8.0.1)
- actionmailbox (= 8.0.1)
- actionmailer (= 8.0.1)
- actionpack (= 8.0.1)
- actiontext (= 8.0.1)
- actionview (= 8.0.1)
- activejob (= 8.0.1)
- activemodel (= 8.0.1)
- activerecord (= 8.0.1)
- activestorage (= 8.0.1)
- activesupport (= 8.0.1)
+ rails (8.0.2)
+ actioncable (= 8.0.2)
+ actionmailbox (= 8.0.2)
+ actionmailer (= 8.0.2)
+ actionpack (= 8.0.2)
+ actiontext (= 8.0.2)
+ actionview (= 8.0.2)
+ activejob (= 8.0.2)
+ activemodel (= 8.0.2)
+ activerecord (= 8.0.2)
+ activestorage (= 8.0.2)
+ activesupport (= 8.0.2)
bundler (>= 1.15.0)
- railties (= 8.0.1)
- rails-dom-testing (2.2.0)
+ railties (= 8.0.2)
+ rails-dom-testing (2.3.0)
activesupport (>= 5.0.0)
minitest
nokogiri (>= 1.6)
@@ -213,84 +229,91 @@ GEM
rails-i18n (8.0.1)
i18n (>= 0.7, < 2)
railties (>= 8.0.0, < 9)
- railties (8.0.1)
- actionpack (= 8.0.1)
- activesupport (= 8.0.1)
+ railties (8.0.2)
+ actionpack (= 8.0.2)
+ activesupport (= 8.0.2)
irb (~> 1.13)
rackup (>= 1.0.0)
rake (>= 12.2)
thor (~> 1.0, >= 1.2.2)
zeitwerk (~> 2.6)
rainbow (3.1.1)
- rake (13.2.1)
- rdoc (6.10.0)
+ rake (13.3.0)
+ rdoc (6.14.1)
+ erb
psych (>= 4.0.0)
regexp_parser (2.10.0)
- reline (0.6.0)
+ reline (0.6.1)
io-console (~> 0.5)
- rexml (3.4.0)
- rubocop (1.69.2)
+ rexml (3.4.1)
+ rubocop (1.77.0)
json (~> 2.3)
- language_server-protocol (>= 3.17.0)
+ language_server-protocol (~> 3.17.0.2)
+ lint_roller (~> 1.1.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.9.3, < 3.0)
- rubocop-ast (>= 1.36.2, < 2.0)
+ rubocop-ast (>= 1.45.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
- rubocop-ast (1.37.0)
- parser (>= 3.3.1.0)
- rubocop-minitest (0.36.0)
- rubocop (>= 1.61, < 2.0)
- rubocop-ast (>= 1.31.1, < 2.0)
- rubocop-performance (1.23.0)
- rubocop (>= 1.48.1, < 2.0)
- rubocop-ast (>= 1.31.1, < 2.0)
- rubocop-rails (2.28.0)
+ rubocop-ast (1.45.1)
+ parser (>= 3.3.7.2)
+ prism (~> 1.4)
+ rubocop-minitest (0.38.1)
+ lint_roller (~> 1.1)
+ rubocop (>= 1.75.0, < 2.0)
+ rubocop-ast (>= 1.38.0, < 2.0)
+ rubocop-performance (1.25.0)
+ lint_roller (~> 1.1)
+ rubocop (>= 1.75.0, < 2.0)
+ rubocop-ast (>= 1.38.0, < 2.0)
+ rubocop-rails (2.32.0)
activesupport (>= 4.2.0)
+ lint_roller (~> 1.1)
rack (>= 1.1)
- rubocop (>= 1.52.0, < 2.0)
- rubocop-ast (>= 1.31.1, < 2.0)
+ rubocop (>= 1.75.0, < 2.0)
+ rubocop-ast (>= 1.44.0, < 2.0)
ruby-progressbar (1.13.0)
- ruby-vips (2.2.2)
+ ruby-vips (2.2.4)
ffi (~> 1.12)
logger
- rubyzip (2.3.2)
+ rubyzip (2.4.1)
securerandom (0.4.1)
- selenium-webdriver (4.27.0)
+ selenium-webdriver (4.34.0)
base64 (~> 0.2)
logger (~> 1.4)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
- sprockets (4.2.1)
+ sprockets (4.2.2)
concurrent-ruby (~> 1.0)
+ logger
rack (>= 2.2.4, < 4)
sprockets-rails (3.5.2)
actionpack (>= 6.1)
activesupport (>= 6.1)
sprockets (>= 3.0.0)
- sqlite3 (2.5.0-aarch64-linux-gnu)
- sqlite3 (2.5.0-arm-linux-gnu)
- sqlite3 (2.5.0-arm64-darwin)
- sqlite3 (2.5.0-x86-linux-gnu)
- sqlite3 (2.5.0-x86_64-darwin)
- sqlite3 (2.5.0-x86_64-linux-gnu)
+ sqlite3 (2.7.0-aarch64-linux-gnu)
+ sqlite3 (2.7.0-arm-linux-gnu)
+ sqlite3 (2.7.0-arm64-darwin)
+ sqlite3 (2.7.0-x86-linux-gnu)
+ sqlite3 (2.7.0-x86_64-darwin)
+ sqlite3 (2.7.0-x86_64-linux-gnu)
stimulus-rails (1.3.4)
railties (>= 6.0.0)
- stringio (3.1.2)
+ stringio (3.1.7)
thor (1.3.2)
timeout (0.4.3)
- turbo-rails (2.0.11)
- actionpack (>= 6.0.0)
- railties (>= 6.0.0)
+ turbo-rails (2.0.16)
+ actionpack (>= 7.1.0)
+ railties (>= 7.1.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
- unicode-display_width (3.1.3)
+ unicode-display_width (3.1.4)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
- uri (1.0.2)
+ uri (1.0.3)
useragent (0.16.11)
web-console (4.2.1)
actionview (>= 6.0.0)
@@ -298,12 +321,13 @@ GEM
bindex (>= 0.4.0)
railties (>= 6.0.0)
websocket (1.2.11)
- websocket-driver (0.7.6)
+ websocket-driver (0.8.0)
+ base64
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
xpath (3.2.0)
nokogiri (~> 1.8)
- zeitwerk (2.7.1)
+ zeitwerk (2.7.3)
PLATFORMS
aarch64-linux
@@ -340,7 +364,7 @@ DEPENDENCIES
web-console
RUBY VERSION
- ruby 3.4.1p0
+ ruby 3.4.4p34
BUNDLED WITH
- 2.6.2
+ 2.6.9