Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7db25aa
Bump Rails to 8 and update gem dependencies
A-Wheeto Jun 11, 2026
c208364
Remove administrate-field-nested_has_many asset manifest entries
A-Wheeto Jun 11, 2026
2700786
Fix Rails 8 enum syntax in Badge
A-Wheeto Jun 11, 2026
65abfb7
Fix routes for Rails 8 and add ViewComponent preview routes
A-Wheeto Jun 11, 2026
9abbee2
Fix ViewComponent 4 breaking changes
A-Wheeto Jun 11, 2026
9327a64
Update environment configs for Rails 8 and ViewComponent 4
A-Wheeto Jun 11, 2026
3e2ffcf
Fix Time integer arithmetic for Rails 8.1
A-Wheeto Jun 11, 2026
b0bafa7
Fix specs for Rails 8 and ViewComponent 4 changes
A-Wheeto Jun 11, 2026
fc44e4f
rspec-rails bumped to 8.0.4
A-Wheeto Jun 11, 2026
229b663
Improve Webpacker compilation error handling in RSpec configuration
A-Wheeto Jun 11, 2026
b10560a
Add diagnostic hook for SimpleCov to handle spurious exit codes
A-Wheeto Jun 11, 2026
14ede47
Refactor SimpleCov at_exit hook to ensure report generation despite s…
A-Wheeto Jun 11, 2026
f82e427
Set THOR_SILENCE_DEPRECATION environment variable and remove SimpleCo…
A-Wheeto Jun 11, 2026
56fad59
Standardrb fix
A-Wheeto Jun 11, 2026
bcd6e30
Diagnosing ci pipleine test discrepancies and additional logging
A-Wheeto Jun 11, 2026
0d3bf2d
Refactor RSpec commands for improved logging and remove diagnostic at…
A-Wheeto Jun 11, 2026
2a7dce2
CircleCI test debugging
A-Wheeto Jun 11, 2026
2273481
Enhance SimpleCov debugging output for better error tracking
A-Wheeto Jun 12, 2026
00ab3b5
Enhance SimpleCov error handling and coverage processing in RSpec
A-Wheeto Jun 12, 2026
9dbdc50
Enhance RSpec debugging output for improved error tracking and clarity
A-Wheeto Jun 12, 2026
b62749a
Enhance RSpec debugging output with additional reporter and exit trac…
A-Wheeto Jun 12, 2026
e6e733f
Fix generator invocation for view components and improve error handling
A-Wheeto Jun 12, 2026
dca183b
Remove CircleCI and rails_helper logging and diagnostics
A-Wheeto Jun 12, 2026
1c148ba
Fix ViewComponent previews by using the renamed previews.enabled setting
A-Wheeto Jun 12, 2026
facb63f
Remove error handling for generator invocation in ComponentGenerator
A-Wheeto Jun 17, 2026
d6a20ad
Refactor user routes and controller actions to use member routes and …
A-Wheeto Jun 17, 2026
cc99694
Update omniauth-rails_csrf_protection to 8.1 compatible version
A-Wheeto Jun 17, 2026
d863797
Refactor routes to address sonarcloud warnings
A-Wheeto Jun 17, 2026
1740155
Rename perform_reset action to perform_reset_tests and update related…
A-Wheeto Jun 18, 2026
89a9cfb
Pin connection_pool gem version to ~> 2.4
A-Wheeto Jun 19, 2026
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
PGHOST: 127.0.0.1
PGUSER: ncce_test
RAILS_ENV: test
THOR_SILENCE_DEPRECATION: "1"
- image: cimg/postgres:14.7
environment:
POSTGRES_USER: postgres
Expand Down
14 changes: 8 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.11"

gem "activestorage-validator"
gem "administrate", "~> 0.20.0"
gem "administrate"
gem "administrate-field-active_storage"
gem "administrate-field-jsonb"
gem "administrate-field-nested_has_many"
gem "attr_encrypted"
gem "audited"
gem "aws-sdk-s3", require: false
gem "bootsnap", ">= 1.5.1", require: false
gem "cloudflare-rails"
gem "combine_pdf", ">= 1.0.18"
gem "connection_pool"
gem "connection_pool", "~> 2.4"
gem "dalli"
gem "enumerize"
gem "faraday"
Expand All @@ -35,15 +34,18 @@ gem "oauth2"
gem "omniauth"
gem "omniauth-oauth2"
gem "omniauth-auth0"
gem "omniauth-rails_csrf_protection"
gem "omniauth-rails_csrf_protection", "~> 2.0"
gem "pagy"
gem "pg"
gem "pg_search"
gem "prawn"
gem "puma"
gem "rack-attack"
gem "rack-cors", require: "rack/cors"
gem "rails", "~> 7.1.0"
gem "ostruct"
gem "rails", "~> 8.0"
gem "sprockets-rails"
gem "sassc-rails"
gem "rails-healthcheck"
gem "rest-client"
gem "scout_apm"
Expand Down Expand Up @@ -96,7 +98,7 @@ group :development do
gem "spring"
gem "spring-watcher-listen"
gem "web-console", ">= 3.3.0"
gem "bullet", "~> 7.1.0"
gem "bullet"
gem "standard"
gem "standard-rails"
end
Expand Down
Loading