Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a major update to the project, primarily upgrading Rails and Ruby versions, updating several gem dependencies, and making necessary compatibility adjustments throughout the codebase. It also includes improvements to model definitions, configuration files, and adds new configuration and migration files for Rails 7+ features. Below are the most important changes grouped by theme:
Framework and Dependency Upgrades
acts-as-taggable-on,devise,rack-mini-profiler,ransack,sprockets-rails, and others in both runtime and development groups. [1] [2] [3] [4] [5]rackdependency with version constraint to satisfy Rails 7.2.2.1 requirements..ruby-versionto 3.3.9 for local development consistency.Codebase Modernization and Model Improvements
enumusage in models to the new Rails 7 syntax (e.g.,enum :role, { ... }), and replacedalias_attributewithaliaswhere appropriate for better clarity and compatibility. [1] [2] [3] [4] [5] [6] [7] [8]Documentmodel to use the newcoder:keyword argument.Configuration and Environment Updates
cable.ymlandstorage.yml. [1] [2] [3]service_namecolumn to support Rails 7+ file storage.Testing and Linting Adjustments
.rubocop.ymlto exclude new paths and files, and configured style rules to avoid false positives on symbol arrays in gemspec and Gemfile. [1] [2]Other Improvements
sprockets/railtiein the engine to ensure asset pipeline compatibility with Rails 7.byebugtodebuggem for modern debugging support in development and test environments.These changes collectively modernize the codebase for Rails 7.2, improve maintainability, and ensure compatibility with updated dependencies.