-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathlocalhost.gemspec
26 lines (18 loc) · 927 Bytes
/
localhost.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
# frozen_string_literal: true
require_relative "lib/localhost/version"
Gem::Specification.new do |spec|
spec.name = "localhost"
spec.version = Localhost::VERSION
spec.summary = "Manage a local certificate authority for self-signed localhost development servers."
spec.authors = ["Samuel Williams", "Olle Jonsson", "Ye Lin Aung", "Akshay Birajdar", "Antonio Terceiro", "Colin Shea", "Gabriel Sobrinho", "Juri Hahn", "Richard S. Leung", "Yuuji Yaginuma"]
spec.license = "MIT"
spec.cert_chain = ['release.cert']
spec.signing_key = File.expand_path('~/.gem/release.pem')
spec.homepage = "https://github.com/socketry/localhost"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/localhost/",
"source_code_uri" => "https://github.com/socketry/localhost.git",
}
spec.files = Dir.glob(['{lib}/**/*', '*.md'], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
end