-
Notifications
You must be signed in to change notification settings - Fork 34
Release To production #1879
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
Release To production #1879
Changes from all commits
a777b3a
6929f2a
bd77877
c0bb844
8eed195
58e68f8
651ffce
ee4719e
54fa60b
a65f40d
54ccfe4
ec1ecab
e01183b
1b852bd
8893c5e
37383ea
c4a20ec
c85e462
51c13d8
e9abf64
2c91806
e144bdd
b5260c5
fc7d086
ce3bd29
8cc6815
5b7affe
9d62a81
6a75170
1d6ce2b
1ace54a
8f7f528
b412629
04c6ae5
b8e298c
fe8d4b1
6cd5186
b4886e4
ed0ad71
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -4,25 +4,25 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |||
| ruby '3.3.4' | ||||
|
|
||||
| # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" | ||||
| gem "rails", "~> 8.0" | ||||
| gem 'rails', '~> 8.0' | ||||
|
|
||||
| # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] | ||||
| gem "sprockets-rails" | ||||
| gem 'sprockets-rails' | ||||
|
|
||||
| # Use postgresql as the database for Active Record | ||||
| gem "pg" | ||||
| gem 'pg' | ||||
|
|
||||
| # Use the Puma web server [https://github.com/puma/puma] | ||||
| gem "puma" | ||||
| gem 'puma' | ||||
|
|
||||
| # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails] | ||||
| gem "importmap-rails", ">= 2.0.0" | ||||
|
|
||||
| gem "importmap-rails", ">= 2.2.0" | ||||
|
|
||||
| # Hotwire"s SPA-like page accelerator [https://turbo.hotwired.dev] | ||||
| gem "turbo-rails" | ||||
| gem "turbo-rails", ">= 2.0.14" | ||||
|
|
||||
| # Hotwire"s modest JavaScript framework [https://stimulus.hotwired.dev] | ||||
| gem "stimulus-rails" | ||||
| gem 'stimulus-rails' | ||||
|
|
||||
| # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis] | ||||
| # gem "kredis" | ||||
|
|
@@ -31,16 +31,16 @@ gem "stimulus-rails" | |||
| # gem "bcrypt", "~> 3.1.7" | ||||
|
|
||||
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||||
| gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby] | ||||
| gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] | ||||
|
|
||||
| # Reduces boot times through caching; required in config/boot.rb | ||||
| gem "bootsnap", require: false | ||||
| gem 'bootsnap', require: false | ||||
|
|
||||
| # Use Sass to process CSS | ||||
| gem "sassc-rails" | ||||
| gem 'sassc-rails' | ||||
|
|
||||
| # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] | ||||
| gem "image_processing", "~> 1.12" | ||||
| gem 'image_processing', '~> 1.12' | ||||
|
|
||||
| gem 'active_model_serializers' | ||||
| gem 'acts-as-list' | ||||
|
|
@@ -51,7 +51,7 @@ gem 'carrierwave', '>= 2.2.1' | |||
| gem 'csv' | ||||
| gem 'devise', '>= 4.8.1' | ||||
| gem 'fog-aws', '>= 3.15.0' | ||||
| gem "jbuilder" | ||||
| gem 'jbuilder' | ||||
| gem 'jquery-rails' | ||||
| gem 'kaminari' | ||||
| gem 'kramdown' | ||||
|
|
@@ -62,35 +62,39 @@ gem 'omniauth-github' | |||
| gem 'omniauth_login_dot_gov', git: 'https://github.com/18F/omniauth_login_dot_gov.git', branch: 'main' | ||||
| gem 'omniauth-rails_csrf_protection' | ||||
| gem 'rack-attack' | ||||
| gem 'rack-cors', require: 'rack/cors' | ||||
| # Use Redis to cache Touchpoints in all envs | ||||
| gem 'rack-cors', '>= 3.0.0', require: 'rack/cors' | ||||
| # Use Redis to cache Touchpoints in all envs= | ||||
| gem 'redis-client' | ||||
| gem 'redis-namespace' | ||||
| gem 'sidekiq', '>= 6.5.0' | ||||
| gem 'sidekiq', '>= 8.0.4' | ||||
| gem 'json-jwt' | ||||
| gem 'aasm' | ||||
| gem 'acts-as-taggable-on' | ||||
| gem 'json-jwt' | ||||
|
||||
| gem 'json-jwt' |
Copilot
AI
Aug 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'redis-client' gem is declared twice (lines 67 and 76). The duplicate declaration should be removed.
| gem 'redis-client' |
Copilot
AI
Aug 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'redis-namespace' gem is declared twice (lines 68 and 77). The duplicate declaration should be removed.
| gem 'redis-namespace' |
Copilot
AI
Aug 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The sidekiq gem is declared twice with different version constraints ('>= 8.0.4' on line 69 and '>= 6.5.0' on line 79). This creates conflicting requirements and the duplicate should be removed.
| gem 'sidekiq', '>= 6.5.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's an extra '=' character at the end of the comment line.