Skip to content

Commit

Permalink
Merge pull request #3250 from ualbertalib/Rails-7-upgrade
Browse files Browse the repository at this point in the history
Rails 7 upgrade
  • Loading branch information
murny authored Jan 17, 2024
2 parents 2dc705c + bef06c7 commit 57bee3a
Show file tree
Hide file tree
Showing 25 changed files with 221 additions and 318 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ New entries in this file should aim to provide a meaningful amount of informatio
### Fixed
- fix "include Pundit is deprecated. Please use include Pundit::Authorization instead." warnings [PR#3318](https://github.com/ualbertalib/jupiter/pull/3318)

### Added
- Rails 7 upgrade [PR#3250](https:://github.com/ualbertalib/jupiter/pull/3250)

### Chores
- Bump rubocop from 1.57.2 to 1.58.0 [PR#3299](https://github.com/ualbertalib/jupiter/pull/3299)
- Bump rubocop-performance from 1.19.1 to 1.20.0 [PR#3315](https://github.com/ualbertalib/jupiter/pull/3315)
Expand Down
11 changes: 4 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ ruby '>= 3.1.4', '< 3.2'
# Core Rails stuff
gem 'image_processing' # for ActiveStorage Variants
gem 'puma', '~> 6.4'
gem 'rails', '~> 6.1.7'
gem 'rails', '~> 7.0.8'

# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.4'

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

# View stuff
gem 'active_link_to'
Expand Down Expand Up @@ -89,9 +89,8 @@ group :development, :test do

gem 'erb_lint', '>= 0.0.35', require: false

gem 'pry'
gem 'pry-byebug'
gem 'pry-rails'
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: [:mri, :mingw, :x64_mingw]

gem 'rubocop', '~> 1.59.0', require: false
gem 'rubocop-minitest', require: false
Expand All @@ -103,8 +102,6 @@ group :development do
gem 'better_errors', '>= 2.3.0'
gem 'binding_of_caller'
gem 'brakeman'
gem 'listen'

gem 'web-console', '>= 4.1.0'
end

Expand Down
Loading

0 comments on commit 57bee3a

Please sign in to comment.