Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/brakeman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.4'
ruby-version: '4.0.6'
bundler-cache: true

- name: Run Brakeman
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

# Ignore bundler config.
/.bundle
/vendor/bundle

# Ignore all logfiles and tempfiles.
/log/*
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.3.4
ruby-4.0.6
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ruby 3.3.4
ruby 4.0.6
nodejs 18.18.2
bundler 2.5.9
yarn 1.22.22
4 changes: 0 additions & 4 deletions Capfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,9 @@ require "capistrano/scm/git"
install_plugin Capistrano::SCM::Git

# Include tasks from other gems included in your Gemfile

require 'capistrano/rails'
require 'capistrano/bundler'
require 'capistrano/asdf'
# require 'capistrano/sidekiq'
# install_plugin Capistrano::Sidekiq
# install_plugin Capistrano::Sidekiq::Systemd

# Load custom tasks from `lib/capistrano/tasks` if you have any defined
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }
Expand Down
29 changes: 16 additions & 13 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,40 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gem 'rails', '~> 7.2'
ruby '3.3.4'
gem 'rails', '~> 8.1'
ruby '4.0.6'

gem 'actiontext'
gem 'appsignal'
gem 'bootsnap', require: false
gem 'benchmark'
gem 'cgi'
gem 'country_select'
gem 'cssbundling-rails'
gem 'csv', '~> 3.2'
gem 'devise', '~> 4.9'
gem 'logger'
gem 'tsort'
gem 'devise', '~> 5.0'
gem 'google-cloud-storage', '~> 1.52'
gem 'image_processing', '~> 1.2'
gem 'jbuilder'
gem 'jsbundling-rails'
gem 'lsa_tdx_feedback'
gem 'mysql2', '~> 0.5.3'
gem 'net-imap', '>= 0.5'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'omniauth-saml', '~> 2.1'
gem 'pagy', '~> 6.4'
gem 'pagy', '~> 43.0'
gem 'propshaft'
gem 'puma'
gem 'pundit'
gem 'redis', '~> 5.0'
gem 'sentry-ruby'
gem 'sentry-rails'
gem 'stackprof'
gem 'sidekiq', '~> 7.3'
gem 'sassc-rails'
gem 'solid_cable'
gem 'solid_cache'
gem 'solid_queue'
gem 'mission_control-jobs'
gem 'simple_form', '~> 5.3'
gem 'stimulus-rails'
gem 'skylight'
Expand All @@ -38,14 +45,12 @@ gem 'turnout2024', require: 'turnout'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]

group :development do
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'better_errors', '>= 2.10'
gem 'binding_of_caller', '>= 2.0'
gem 'brakeman'
gem 'capistrano', '~> 3.17', require: false
gem 'capistrano-rails', '~> 1.6', '>= 1.6.1', require: false
gem 'capistrano-asdf', require: false
gem 'capistrano-sidekiq', '~> 2.0', require: false
gem 'web-console'
end

Expand All @@ -55,7 +60,6 @@ group :test do
gem 'rails-controller-testing'
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'webdrivers'
end

group :development, :staging do
Expand All @@ -65,7 +69,6 @@ end
group :development, :test do
gem 'capybara'
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'pry-byebug'
gem 'pry-rails'
gem 'pundit-matchers'
gem 'rspec-rails'
Expand Down
Loading
Loading