Skip to content

Commit

Permalink
Update Rails 7.2.0 beta references to 7.2.0 final
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Aug 10, 2024
1 parent b67fbc0 commit e54954c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ end
# gem 'rails', '~> 6.0.0'
# gem 'rails', '~> 6.1.0'
# gem 'rails', '~> 7.0.0'
gem 'rails', '~> 7.1.0'
# gem 'rails', '7.2.0.beta3'
# gem 'rails', '~> 7.1.0'
gem 'rails', '~> 7.2.0'

gem 'haml'
gem 'sqlite3', '~> 1.4'
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails-7.2-propshaft.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ group :test do
gem 'haml', '~> 6.0'
end

gem 'rails', '7.2.0.rc1'
gem 'rails', '~> 7.2.0'
gem 'propshaft'
gem 'sqlite3', '~> 1.4'

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails-7.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ group :test do
gem 'haml', '~> 6.0'
end

gem 'rails', '7.2.0.rc1'
gem 'rails', '~> 7.2.0'
gem 'sprockets-rails'
gem 'sqlite3', '~> 1.4'

Expand Down
2 changes: 1 addition & 1 deletion sandbox/app/models/article.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Article < ApplicationRecord

scope :active, -> { where(active: true) }

serialize :tags, Array, coder: YAML
serialize :tags, type: Array, coder: YAML

validates :title, presence: true

Expand Down

0 comments on commit e54954c

Please sign in to comment.