[前][次][番号順一覧][スレッド一覧]

ruby-changes:62635

From: Hiroshi <ko1@a...>
Date: Tue, 18 Aug 2020 20:26:58 +0900 (JST)
Subject: [ruby-changes:62635] d3b2c1a175 (master): Fixed the invalid SPDX identifier on gemspec

https://git.ruby-lang.org/ruby.git/commit/?id=d3b2c1a175

From d3b2c1a17585ad30fb297ab489da0505e8b9b97a Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Tue, 18 Aug 2020 20:22:07 +0900
Subject: Fixed the invalid SPDX identifier on gemspec


diff --git a/ext/bigdecimal/bigdecimal.gemspec b/ext/bigdecimal/bigdecimal.gemspec
index 2404287..5cf0726 100644
--- a/ext/bigdecimal/bigdecimal.gemspec
+++ b/ext/bigdecimal/bigdecimal.gemspec
@@ -11,7 +11,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/ext/bigdecimal/bigdecimal.gemspec#L11
   s.summary       = "Arbitrary-precision decimal floating-point number library."
   s.description   = "This library provides arbitrary-precision decimal floating-point number class."
   s.homepage      = "https://github.com/ruby/bigdecimal"
-  s.license       = "ruby"
+  s.license       = "Ruby"
 
   s.require_paths = %w[lib]
   s.extensions    = %w[ext/bigdecimal/extconf.rb]
diff --git a/lib/readline.gemspec b/lib/readline.gemspec
index 5c641a8..dddac02 100644
--- a/lib/readline.gemspec
+++ b/lib/readline.gemspec
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec| https://github.com/ruby/ruby/blob/trunk/lib/readline.gemspec#L12
     library with "readline-ext" gem and is implemented by pure Ruby.
   EOD
   spec.homepage      = 'https://github.com/ruby/readline'
-  spec.license       = 'Ruby license'
+  spec.license       = 'Ruby'
 
   spec.files         = Dir['BSDL', 'COPYING', 'README.md', 'lib/readline.rb']
   spec.require_paths = ['lib']
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]