From 2e595c2d780814cc4d1357c687b44fd7208ff313 Mon Sep 17 00:00:00 2001 From: aycabta Date: Sat, 7 Dec 2019 20:26:01 +0900 Subject: [PATCH] [ruby/irb] New IRB needs Ruby 2.5 or later https://github.com/ruby/irb/commit/4be3158358 --- lib/irb/irb.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/irb/irb.gemspec b/lib/irb/irb.gemspec index 267355f65ca95d..c3208954c5d854 100644 --- a/lib/irb/irb.gemspec +++ b/lib/irb/irb.gemspec @@ -75,7 +75,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.required_ruby_version = Gem::Requirement.new(">= 2.4") + spec.required_ruby_version = Gem::Requirement.new(">= 2.5") spec.add_dependency "reline", ">= 0.0.1" spec.add_development_dependency "bundler"