Sign the gem

This commit is contained in:
Alex Kotov 2022-11-15 16:03:17 +04:00
parent 641060598f
commit 99126beeca
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,12 @@
require './lib/mail/version'
GEM_CERT = File.expand_path('../gem-public_cert.pem', __dir__).freeze
GEM_KEY = File.expand_path('../gem-private_key.pem', __dir__).freeze
Gem::Specification.new do |s|
s.cert_chain = [GEM_CERT] if File.file? GEM_CERT
s.signing_key = GEM_KEY if File.file? GEM_KEY
s.name = "mail"
s.version = Mail::VERSION::STRING
s.author = "Mikel Lindsaar"