-
Notifications
You must be signed in to change notification settings - Fork 151
/
wisper.gemspec
32 lines (27 loc) · 1.23 KB
/
wisper.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wisper/version'
Gem::Specification.new do |gem|
gem.name = "wisper"
gem.version = Wisper::VERSION
gem.authors = ["Kris Leech"]
gem.email = ["[email protected]"]
gem.description = <<-DESC
A micro library providing objects with Publish-Subscribe capabilities.
Both synchronous (in-process) and asynchronous (out-of-process) subscriptions are supported.
Check out the Wiki for articles, guides and examples: https://github.com/krisleech/wisper/wiki
DESC
gem.summary = "A micro library providing objects with Publish-Subscribe capabilities"
gem.homepage = "https://github.com/krisleech/wisper"
gem.license = "MIT"
gem.required_ruby_version = '>= 2.7'
signing_key = File.expand_path(ENV['HOME'].to_s + '/.ssh/gem-private_key.pem')
if File.exist?(signing_key)
gem.signing_key = signing_key
gem.cert_chain = ['gem-public_cert.pem']
end
gem.files = `git ls-files`.split($/).reject { |f| f.start_with?(%r{(bin|spec)/}) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end