From 52fb6c29b2c8a883310e41da06b78802d5d3aa6f Mon Sep 17 00:00:00 2001 From: Theo Date: Fri, 22 Jul 2022 10:04:47 +0200 Subject: [PATCH] Fix the license identifier in the gemspec Rubygems didn't use to validate these, but looks like it does now and the value was not understood --- ione.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ione.gemspec b/ione.gemspec index 73aeb6a..658dc1b 100644 --- a/ione.gemspec +++ b/ione.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.homepage = 'http://github.com/iconara/ione' s.summary = %q{Reactive programming framework for Ruby} s.description = %q{Reactive programming framework for Ruby, painless evented IO, futures and an efficient byte buffer} - s.license = 'Apache License 2.0' + s.license = 'Apache-2.0' s.files = Dir['lib/**/*.rb', 'README.md', '.yardopts'] s.test_files = Dir['spec/**/*.rb']