Skip to content

Commit c5a0637

Browse files
authored
Merge pull request #1409 from MITLibraries/rails71
Rails71
2 parents fbdea98 + 8ac05e4 commit c5a0637

28 files changed

+222
-307
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ todo.md
2929
.env.development
3030
db/test.sqlite3-wal
3131
db/test.sqlite3-shm
32+
*.sqlite3-wal
33+
*.sqlite3-shm

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AllCops:
2-
TargetRubyVersion: 2.6
2+
TargetRubyVersion: 3.1
33
NewCops: enable
44
StyleGuideBaseURL: https://rubystyle.guide
55
Exclude:

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.2.6

Gemfile

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
source 'https://rubygems.org'
2-
ruby '3.2.2'
2+
ruby '3.2.6'
33

44
gem 'actionpack-action_caching', github: 'rails/actionpack-action_caching', branch: 'master'
55
gem 'barnes'
66
gem 'bootsnap'
7-
gem 'flipflop'
87
gem 'google-api-client'
98
gem 'http'
109
gem 'http_logger'
@@ -19,13 +18,13 @@ gem 'net-smtp', require: false
1918
gem 'nokogiri'
2019
gem 'puma'
2120
gem 'rack-attack'
22-
gem 'rails', '~> 7.0.0'
21+
gem 'rails', '~> 7.1.0'
2322
gem 'sass-rails'
2423
gem 'sentry-rails'
2524
gem 'sentry-ruby'
2625
gem 'skylight'
2726
gem 'stringex'
28-
gem 'uglifier'
27+
gem 'terser'
2928

3029
group :production do
3130
gem 'dalli'

0 commit comments

Comments
 (0)