Skip to content

Commit e59b0ea

Browse files
author
mitchell.henke
committed
Upgrade to Rails 7.1
* update gems * remove unused gems * remove configs with only comments * remove secrets.yml * set secret key base * update puma * update brakeman * ruby * remove tzinfo-data * move secret_key_base to config * gems * add csv to Gemfile * Add redis gem back after Bloomfilter upgrade removed it * empty commit to trigger pipeline * Update to include all timezones * Add allow_other_hosts attribute to safe redirect * Remove zonebie in favor of setting random timezones in test.rb * WIP Co-authored-by: davida marion <davida.marion@gsa.gov> See merge request lg/identity-pki!25
1 parent 2c55673 commit e59b0ea

File tree

15 files changed

+222
-251
lines changed

15 files changed

+222
-251
lines changed

Gemfile

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
33

44
ruby '~> 3.3'
55

6-
gem 'rails', '~> 7.0.8.3'
6+
gem 'rails', '~> 7.1.0'
77

88
gem 'activerecord-import', '>= 1.0.2'
99
# pod identity requires 3.188.0
1010
# https://docs.aws.amazon.com/eks/latest/userguide/pod-id-minimum-sdk.html
1111
gem 'aws-sdk-core', '>= 3.188.0'
1212
gem 'aws-sdk-s3'
1313
gem 'bloomfilter-rb'
14+
gem 'csv'
15+
gem 'redis'
1416
gem 'identity-hostdata', github: '18F/identity-hostdata', tag: 'v4.0.0'
1517
gem 'identity-logging', github: '18F/identity-logging', tag: 'v0.1.0'
1618
gem 'mini_cache'
@@ -23,11 +25,11 @@ gem 'redacted_struct', '~> 2.0'
2325
gem 'rgl'
2426

2527
group :development, :test do
26-
gem 'bullet', '~> 7.0'
28+
gem 'bullet', '~> 7.1.2'
2729
gem 'brakeman', require: false
2830
gem 'listen'
2931
gem 'pry-byebug'
30-
gem 'rspec-rails', '>= 3.8.3'
32+
gem 'rspec-rails', '~> 6.0'
3133
gem 'rubocop', require: false
3234
gem 'rubocop-rails', '>= 2.19.0', require: false
3335
gem 'rubocop-performance', '~> 1.17', require: false
@@ -38,18 +40,11 @@ group :development do
3840
end
3941

4042
group :test do
41-
gem 'axe-matchers', '~> 1.3.4'
4243
gem 'bundler-audit', require: false
43-
gem 'database_cleaner'
4444
gem 'factory_bot_rails', '>= 5.2.0'
45-
gem 'fakefs', require: 'fakefs/safe'
4645
gem 'rails-controller-testing', '>= 1.0.4'
4746
gem 'rspec_junit_formatter'
4847
gem 'shoulda-matchers', '~> 3.1', '>= 3.1.3', require: false
4948
gem 'simplecov', '>= 0.13.0'
50-
gem 'timecop'
5149
gem 'webmock'
52-
gem 'zonebie'
5350
end
54-
55-
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

0 commit comments

Comments
 (0)