diff options
author | cos <cos> | 2021-05-31 11:47:46 +0200 |
---|---|---|
committer | cos <cos> | 2021-06-08 11:50:17 +0200 |
commit | 2b17c33a2ab7673b3e8b88b90e77b92ba122d1ed (patch) | |
tree | 90968b696ebdf0863bb9b2ba6f256c27f1a8ac85 | |
parent | faab5052f8d21ed06352b185d52c5a3e177b904e (diff) | |
download | psych-cr/drop_ruby_2.x.x.zip |
Drop Ruby <3.0.1 supportcr/drop_ruby_2.x.x
There might be a more appropriate release number somewhere in between of
the current value and the one suggested. The aim of the change is to
block gem from updating it on unsupported Ruby versions, making upgrades
of psych no longer break ruby2.5 installations.
-rw-r--r-- | psych.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/psych.gemspec b/psych.gemspec index e9e36e6..50d9850 100644 --- a/psych.gemspec +++ b/psych.gemspec @@ -45,7 +45,7 @@ DESCRIPTION s.rdoc_options = ["--main", "README.md"] s.extra_rdoc_files = ["README.md"] - s.required_ruby_version = Gem::Requirement.new(">= 2.4.0") + s.required_ruby_version = Gem::Requirement.new(">= 3.0.1") s.required_rubygems_version = Gem::Requirement.new(">= 0") if RUBY_ENGINE == 'jruby' |