Bump required_rubygems_version to 3.3.13 or higher

https://github.com/rails/rails/pull/45979 relies on
https://github.com/rubygems/rubygems/pull/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
https://github.com/rails/rails/pull/4576
This commit is contained in:
Yasuo Honda 2022-12-24 10:32:17 +09:00
parent 40a1f3ae24
commit 3aa32f2176
2 changed files with 5 additions and 1 deletions

@ -10,7 +10,7 @@
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."
s.required_ruby_version = ">= 2.7.0"
s.required_rubygems_version = ">= 1.8.11"
s.required_rubygems_version = ">= 3.3.13"
s.license = "MIT"

@ -1,3 +1,7 @@
* Bump `required_rubygems_version` to 3.3.13 or higher
*Yasuo Honda*
* Add Docker files by default to new apps: Dockerfile, .dockerignore, bin/docker-entrypoint.
These files can be skipped with `--skip-docker`. They're intended as a starting point for
a production deploy of the application. Not intended for development (see Docked Rails for that).