From d1b06229fab604515a29bd03eea0ac0c960a1ccf Mon Sep 17 00:00:00 2001 From: Maciej Mensfeld Date: Mon, 10 Aug 2020 12:54:46 +0200 Subject: [PATCH] [ruby/reline] Use the standard SPDX ID for license in gemspec It is better to use SPDX ID for license field: https://guides.rubygems.org/specification-reference/#license= ref: https://spdx.org/licenses/Ruby.html https://github.com/ruby/reline/commit/8468a727e5 --- lib/reline/reline.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/reline/reline.gemspec b/lib/reline/reline.gemspec index 3ced4b8488..1962f61def 100644 --- a/lib/reline/reline.gemspec +++ b/lib/reline/reline.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.summary = %q{Alternative GNU Readline or Editline implementation by pure Ruby.} spec.description = %q{Alternative GNU Readline or Editline implementation by pure Ruby.} spec.homepage = 'https://github.com/ruby/reline' - spec.license = 'Ruby License' + spec.license = 'Ruby' spec.files = Dir['BSDL', 'COPYING', 'README.md', 'lib/**/*'] spec.require_paths = ['lib']