-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathrubydns.gemspec
29 lines (20 loc) · 1.09 KB
/
rubydns.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
# frozen_string_literal: true
require_relative "lib/rubydns/version"
Gem::Specification.new do |spec|
spec.name = "rubydns"
spec.version = RubyDNS::VERSION
spec.summary = "An easy to use DNS server and resolver for Ruby."
spec.authors = ["Samuel Williams", "Peter M. Goldstein", "Erran Carey", "Keith Larrimore", "Alexey Pisarenko", "Chris Cunningham", "Genki Sugawara", "Jean-Christophe Cyr", "John Bachir", "Mark Van de Vyver", "Michal Cichra", "Mike Ryan", "Olle Jonsson", "Rob Fors", "Satoshi Takada", "Timothy Redaelli", "Zac Sprackett"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://github.com/socketry/rubydns"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/rubydns/",
"funding_uri" => "https://github.com/sponsors/ioquatix/",
"source_code_uri" => "https://github.com/socketry/rubydns.git",
}
spec.files = Dir.glob(["{lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "async-dns", "~> 1.0"
end