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 .docker/development/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2.5 AS cartafact_base
FROM ruby:3.4.8 AS cartafact_base


ENV HOME /cartafact
Expand Down
2 changes: 1 addition & 1 deletion .docker/production/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
### app config ###
########################

FROM ruby:3.2.5 AS app
FROM ruby:3.4.8 AS app

ENV HOME /cartafact

Expand Down
2 changes: 1 addition & 1 deletion .docker/production/Dockerfile.gha
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
############################################

# Taken from .ruby-version
ARG RUBY_VERSION=3.2.5
ARG RUBY_VERSION=3.4.8
FROM ruby:$RUBY_VERSION-slim-bookworm AS base
LABEL author="DCHBX"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
services:
mongo:
image: mongo:4.2
image: mongo:6.0
ports:
- 27017:27017
options: >-
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
- name: Launch MongoDB
uses: wbari/start-mongoDB@v0.2
with:
mongoDBVersion: 3.6
- name: Set up Ruby 3.2.5
mongoDBVersion: '6.0'
- name: Set up Ruby 3.4.8
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.5
ruby-version: 3.4.8
- name: Cache Gems
uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This yaml describes our current checks.
AllCops:
TargetRubyVersion: 3.2.5
TargetRubyVersion: 3.4
SuggestExtensions: false
NewCops: enable
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.2.5
ruby-3.4.8
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.2.5'
ruby '3.4.8'

gem 'rails', '~> 7.2.0'
gem 'rails', '~> 8.0'

gem 'mongoid', '~> 8.1.5'
gem 'mongoid', '~> 9.0'
# Use Puma as the app server
gem 'puma', '~> 6.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
Expand All @@ -30,7 +30,7 @@ gem "aws-sdk-s3", "~> 1.14"
# Settings, validation and dependency injection
# TODO: Use tagged release for resource_registry instead of branch
gem 'resource_registry', git: 'https://github.com/ideacrew/resource_registry.git', tag: 'v0.10.1'
gem 'fast_jsonapi'
gem 'jsonapi-serializer'

gem 'shrine-mongoid', '~> 1.0'

Expand All @@ -56,8 +56,8 @@ group :development, :test do
gem 'shoulda-matchers'
gem 'yard'
gem 'climate_control'
gem 'factory_bot_rails', '~> 4.11'
gem 'database_cleaner', '~> 1.7'
gem 'factory_bot_rails', '~> 6.2'
gem 'database_cleaner-mongoid'
gem 'pry-byebug'
end

Expand Down
Loading
Loading