You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Copy file name to clipboardExpand all lines: rails.gemspec
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
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."
0 commit comments