summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-08-18 20:22:07 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-08-18 20:26:40 +0900
commitd3b2c1a17585ad30fb297ab489da0505e8b9b97a (patch)
tree3c12dc3a7aac2164886d409a2b3b58898eef2d1e
parent8fb02b7a97317090e3946e6f2d4a7d034f9699f1 (diff)
Fixed the invalid SPDX identifier on gemspec
-rw-r--r--ext/bigdecimal/bigdecimal.gemspec2
-rw-r--r--lib/readline.gemspec2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/bigdecimal/bigdecimal.gemspec b/ext/bigdecimal/bigdecimal.gemspec
index 240428787c..5cf0726e1e 100644
--- a/ext/bigdecimal/bigdecimal.gemspec
+++ b/ext/bigdecimal/bigdecimal.gemspec
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
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 5c641a88a5..dddac020a4 100644
--- a/lib/readline.gemspec
+++ b/lib/readline.gemspec
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
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']