Skip to content

Commit

Permalink
update to ruby 3.3.5 and rails 7.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hwesselmann committed Oct 7, 2024
1 parent 73a034f commit c34f083
Show file tree
Hide file tree
Showing 24 changed files with 555 additions and 405 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.4
3.3.5
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.0.4-slim-bullseye AS assets
FROM ruby:3.3.5-slim-bullseye AS assets
LABEL maintainer="Hauke Wesselmann <[email protected]>"

WORKDIR /app
Expand Down Expand Up @@ -40,7 +40,7 @@ CMD ["bash"]

###############################################################################

FROM ruby:3.0.4-slim-bullseye AS app
FROM ruby:3.3.5-slim-bullseye AS app
LABEL maintainer="Hauke Wesselmann <[email protected]>"

WORKDIR /app
Expand Down
15 changes: 8 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.0.4'
ruby '3.3.5'

gem 'bcrypt', '3.1.13'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'chartkick'
gem 'jbuilder', '~> 2.7'
gem 'puma', '~> 4.3'
gem 'rails', '~> 7.0.2.3', '>= 7.0.2.3'
gem 'csv', '>= 3.3.0'
gem 'jbuilder', '>= 2.7'
gem 'puma', '~> 6.4.3'
gem 'rails', '7.2.1'
gem 'sass-rails', '>= 6'
gem 'webpacker', '~> 4.0'
gem 'webpacker', '>= 4.0'

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
Expand All @@ -31,11 +32,11 @@ group :test do
gem 'capybara', '>= 2.15'
gem 'guard'
gem 'guard-minitest'
gem 'minitest', '5.15.0'
gem 'minitest', '5.25.1'
gem 'minitest-reporters'
gem 'rails-controller-testing'
gem 'selenium-webdriver'
gem 'simplecov', '0.17.1', require: false
gem 'simplecov', '0.21.2', require: false
gem 'webdrivers'
end

Expand Down
Loading

0 comments on commit c34f083

Please sign in to comment.