diff options
author | Jeremy Evans <[email protected]> | 2023-09-18 16:58:50 -0700 |
---|---|---|
committer | git <[email protected]> | 2023-09-19 01:04:54 +0000 |
commit | 230834d9bb5528834e7ddc7fcc616fef238eb6f5 (patch) | |
tree | ae9b4535ba79db9411a70f4d82808888fb515819 /lib | |
parent | 0a2c4a60915fe07912ab5fb8a426e4d450b73564 (diff) |
[ruby/base64] Bump required_ruby_version to 2.4.0
The gem depends on String#unpack1, which was introduced in Ruby 2.4.
https://github.com/ruby/base64/commit/9f0e4ba155
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base64.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base64.gemspec b/lib/base64.gemspec index 44a2ce1fd1..c013b7c1c2 100644 --- a/lib/base64.gemspec +++ b/lib/base64.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |spec| spec.summary = %q{Support for encoding and decoding binary data using a Base64 representation.} spec.description = %q{Support for encoding and decoding binary data using a Base64 representation.} spec.homepage = "https://github.com/ruby/base64" - spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") + spec.required_ruby_version = Gem::Requirement.new(">= 2.4") spec.licenses = ["Ruby", "BSD-2-Clause"] spec.metadata["homepage_uri"] = spec.homepage |