From 8b387bcfba84ee5ca57e7786d21ff927d4ee8e90 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Mon, 28 Dec 2020 13:43:44 +0900 Subject: [PATCH] [ruby/pp] Drop to support < Ruby 2.7 https://github.com/ruby/pp/commit/e92228964b --- lib/pp.gemspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/pp.gemspec b/lib/pp.gemspec index f3f3527086..bdf6fca3a5 100644 --- a/lib/pp.gemspec +++ b/lib/pp.gemspec @@ -7,9 +7,10 @@ Gem::Specification.new do |spec| spec.summary = %q{Provides a PrettyPrinter for Ruby objects} spec.description = %q{Provides a PrettyPrinter for Ruby objects} spec.homepage = "https://github.com/ruby/pp" - spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") spec.licenses = ["Ruby", "BSD-2-Clause"] + spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0") + spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage