Skip to content

Commit

Permalink
Merge pull request #544 from dxw/feature/upgrade-ruby-version
Browse files Browse the repository at this point in the history
Upgrade project to Ruby 3.2.1 & Rails ~> 7.0
  • Loading branch information
lozette authored Feb 24, 2023
2 parents 61d4356 + 1c841b1 commit 64f9e9e
Show file tree
Hide file tree
Showing 4 changed files with 154 additions and 140 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.4
3.2.1
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ------------------------------------------------------------------------------
# Base
# ------------------------------------------------------------------------------
FROM ruby:2.7.4 as base
FROM ruby:3.2.1 as base
LABEL org.opencontainers.image.authors="[email protected]"

RUN curl -L https://deb.nodesource.com/setup_16.x | bash -
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.7.4"
ruby "3.2.1"

gem "bootsnap", ">= 1.1.0", require: false
gem "bootstrap", ">= 4.3.1"
Expand All @@ -16,7 +16,7 @@ gem "pry-rails"
gem "mini_racer"
gem "puma", "~> 5.6"
gem "rollbar"
gem "rails", "~> 6.1.6"
gem "rails", "~> 7.0"
gem "sass-rails", "~> 6.0"
gem "turbolinks", "~> 5"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
Expand Down
Loading

0 comments on commit 64f9e9e

Please sign in to comment.