From ba1b9d31044cdf31b975b6583dd39552ac576113 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 19 Feb 2023 18:54:43 +0900 Subject: [ruby/bigdecimal] Fix the license name [ci skip] ``` $ gem build bigdecimal.gemspec WARNING: license value 'BSD-2-clause' is invalid. Use a license identifier from http://spdx.org/licenses or 'Nonstandard' for a nonstandard license. Did you mean 'BSD-2-Clause'? WARNING: See https://guides.rubygems.org/specification-reference/ for help ``` https://github.com/ruby/bigdecimal/commit/36b77a2d2f --- ext/bigdecimal/bigdecimal.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/bigdecimal/bigdecimal.gemspec b/ext/bigdecimal/bigdecimal.gemspec index b05b2b0891..a72205f517 100644 --- a/ext/bigdecimal/bigdecimal.gemspec +++ b/ext/bigdecimal/bigdecimal.gemspec @@ -9,7 +9,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.licenses = ["Ruby", "bsd-2-clause"] + s.licenses = ["Ruby", "BSD-2-Clause"] s.require_paths = %w[lib] s.files = %w[ -- cgit v1.2.1