From 9576aa0207fa27beb743a7ba97929f134302d3bf Mon Sep 17 00:00:00 2001 From: Sebastian Kreft Date: Wed, 24 Dec 2025 11:33:53 -0300 Subject: [PATCH] chore: add license to gemspec Add the SPDX license identifier to the gemspec. See the gemspec [specification](https://guides.rubygems.org/specification-reference/#method-i-license-3D) and the SPDX [MIT entry](https://spdx.org/licenses/MIT.html). --- imgkit.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/imgkit.gemspec b/imgkit.gemspec index edb1250..e6b2de4 100644 --- a/imgkit.gemspec +++ b/imgkit.gemspec @@ -9,6 +9,7 @@ Gem::Specification.new do |s| s.authors = ["csquared"] s.email = %q{christopher.continanza@gmail.com} s.homepage = "https://github.com/csquared/IMGKit" + s.license = "MIT" s.summary = %q{HTML+CSS -> JPG} s.description = %q{Uses wkhtmltoimage to create Images using HTML} s.post_install_message = File.read('POST_INSTALL')