Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DRAFT] Ruby 3.2.2 #696

Closed
wants to merge 12 commits into from
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.8
3.2.2
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Note: Uncomment this to run docker locally
# FROM agilesix/ruby:2.7.8
# FROM agilesix/ruby:3.0.6
# Note: Comment out the next line to run docker locally
FROM 124858472090.dkr.ecr.us-gov-west-1.amazonaws.com/diffusion-marketplace:ruby-2.7.8
FROM 124858472090.dkr.ecr.us-gov-west-1.amazonaws.com/diffusion-marketplace:ruby-3.0.6

RUN useradd -rm -d /home/nginx -s /bin/bash -g root -G wheel -u 1443 nginx
RUN groupadd -g 1443 nginx
Expand Down
16 changes: 11 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'

ruby '2.7.8'
ruby '3.2.2'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1'
Expand Down Expand Up @@ -38,15 +38,15 @@ gem 'bcrypt', '~> 3.1.13'
# gem 'capistrano-rails', group: :development

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '1.4.6', require: false
gem 'bootsnap', require: false

gem 'devise', '>= 4.6.0'
gem 'devise-security'
gem 'kaminari'

gem 'rolify', '~> 5.3.0'
# pagination gem
gem 'pagy', '~> 3.5'
gem 'pagy', '~> 4'

gem 'local_time'
gem 'rails-timeago'
Expand All @@ -61,7 +61,7 @@ group :development, :test do
gem 'rspec_junit_formatter'
gem 'simplecov'
gem 'shoulda-matchers', require: false
gem 'pry', '~> 0.12.2'
gem 'pry'
gem 'rack_session_access'

# gem 'sniffybara', git: 'https://github.com/department-of-veterans-affairs/sniffybara.git'
Expand All @@ -73,14 +73,19 @@ group :development, :test do
gem 'brakeman', '5.0.2'
gem 'bundler-audit'
gem 'bundler-leak'

gem 'net-smtp', require: false
gem 'net-imap', require: false
gem 'net-pop', require: false

gem 'factory_bot_rails'
gem 'faker'
end

group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '3.1.5'
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
Expand Down Expand Up @@ -155,6 +160,7 @@ gem 'ahoy_matey'
gem 'ntlm-sso', github: 'agilesix/ntlm-sso', branch: 'master'
gem 'net-ldap'


gem 'wdm', '>= 0.1.0' if Gem.win_platform?

gem 'gmaps4rails', github: 'agilesix/Google-Maps-for-Rails', branch: 'master'
Expand Down
Loading