Skip to content

Commit 3aa32f2

Browse files
committed
Bump required_rubygems_version to 3.3.13 or higher
rails#45979 relies on rubygems/rubygems#5486 which is included in https://github.com/rubygems/rubygems/blob/master/CHANGELOG.md#3313--2022-05-04 - RubyGems 3.3.12` Gem.ruby_version` includes patch level ```ruby $ gem -v 3.3.12 $ irb irb(main):001:0> Gem.ruby_version => Gem::Version.new("3.1.3.p185") ``` - RubyGems 3.3.13` Gem.ruby_version` does not include patch level ``` $ gem -v 3.3.13 $ irb irb(main):001:0> Gem.ruby_version => Gem::Version.new("3.1.3") irb(main):002:0> ``` The current version 1.8.11 has been updated to use Ruby 1.9.3-p0 rails#4576
1 parent 40a1f3a commit 3aa32f2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
1010
s.description = "Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration."
1111

1212
s.required_ruby_version = ">= 2.7.0"
13-
s.required_rubygems_version = ">= 1.8.11"
13+
s.required_rubygems_version = ">= 3.3.13"
1414

1515
s.license = "MIT"
1616

railties/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
* Bump `required_rubygems_version` to 3.3.13 or higher
2+
3+
*Yasuo Honda*
4+
15
* Add Docker files by default to new apps: Dockerfile, .dockerignore, bin/docker-entrypoint.
26
These files can be skipped with `--skip-docker`. They're intended as a starting point for
37
a production deploy of the application. Not intended for development (see Docked Rails for that).

0 commit comments

Comments
 (0)