Skip to content
Draft
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 .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.4.8
ruby 4.0.4
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ docker compose up
- Full suite: `docker compose run --rm api rspec`
- Single spec: `docker compose run --rm api rspec spec/path/to/spec.rb`
- Lint: `docker compose run --rm api bundle exec rubocop`
- CI: GitHub Actions with Ruby 3.4, Postgres 12, Redis.
- CI: GitHub Actions with Ruby 4, Postgres 12, Redis.

## Where to Look First
- Routes: `config/routes.rb`. Auth: `config/initializers/omniauth.rb`, `app/helpers/authentication_helper.rb`, `app/controllers/concerns/identifiable.rb`.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.4.8-slim-trixie AS base
FROM ruby:4.0.4-slim-trixie AS base
RUN gem install bundler \
&& apt-get update \
&& apt-get upgrade --yes \
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gem 'administrate', '~> 1.0.0'
gem 'administrate-field-active_storage'
gem 'aws-sdk-s3', require: false
gem 'base64', '~> 0.3'
gem 'bootsnap', require: false
gem 'bootsnap', '>= 1.24.4', require: false
gem 'cancancan', '~> 3.3'
gem 'countries'
gem 'csv', '~> 3.3'
Expand Down
7 changes: 4 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ GEM
aws-eventstream (~> 1, >= 1.0.2)
base64 (0.3.0)
bigdecimal (4.1.2)
bootsnap (1.24.1)
bootsnap (1.24.4)
msgpack (~> 1.2)
builder (3.3.0)
bullet (8.1.1)
Expand Down Expand Up @@ -183,6 +183,7 @@ GEM
logger
faraday-net_http (3.4.2)
net-http (~> 0.5)
ffi (1.17.2)
ffi (1.17.2-aarch64-linux-gnu)
ffi (1.17.2-arm64-darwin)
ffi (1.17.2-x86_64-linux-gnu)
Expand Down Expand Up @@ -579,7 +580,7 @@ DEPENDENCIES
awesome_print
aws-sdk-s3
base64 (~> 0.3)
bootsnap
bootsnap (>= 1.24.4)
bullet
cancancan (~> 3.3)
capybara
Expand Down Expand Up @@ -643,7 +644,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.4.8
ruby 4.0.4

BUNDLED WITH
4.0.10
Loading