Sign the gem

This commit is contained in:
Alex Kotov 2022-11-15 16:18:21 +04:00
parent 22daa83b53
commit b339593203
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 6 additions and 0 deletions

View File

@ -1,7 +1,13 @@
# -*- encoding: utf-8 -*-
require 'bundler'
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 = %q{url_mount}
s.version = "0.2.1"