Skip to content

Commit ab9bad8

Browse files
committed
upgrade to ruby 3.4.1
1 parent 29d639e commit ab9bad8

6 files changed

Lines changed: 177 additions & 163 deletions

File tree

.rubocop.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require:
1+
plugins:
22
- rubocop-performance
33
- rubocop-rspec
44
- rubocop-rails
@@ -11,6 +11,7 @@ AllCops:
1111
- 'db/**/*'
1212
- 'node_modules/**/*'
1313
NewCops: enable
14+
TargetRubyVersion: 3.4
1415

1516
# Commonly used screens these days easily fit more than 80 characters.
1617
Layout/LineLength:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0
1+
3.4.1

Gemfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
source 'https://rubygems.org'
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

6-
ruby '3.2.0'
7-
86
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
97
gem 'rack', '~> 3.0'
108
gem 'rack-brotli'
119
gem 'rack-session', '~> 2.0'
1210
gem 'rackup', '~> 2.1'
13-
gem 'rails', '7.2.2'
11+
gem 'rails', '< 8.0'
1412

1513
# cache store
1614
gem 'redis', '~> 5.0'
@@ -29,7 +27,7 @@ gem 'bootsnap', '>= 1.4.4', require: false
2927
# Js and css
3028
gem 'jsbundling-rails', '~> 1.0'
3129
gem 'sprockets-rails'
32-
gem 'tailwindcss-rails'
30+
gem 'tailwindcss-rails', '< 4.0'
3331

3432
# A framework for building view components
3533
gem 'view_component', '~> 3.0', require: 'view_component/engine'

0 commit comments

Comments
 (0)