forked from ibc/em-udns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathem-udns.gemspec
24 lines (24 loc) · 969 Bytes
/
em-udns.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
Gem::Specification.new do |spec|
spec.name = "em-udns"
spec.version = "0.1.1"
spec.date = Time.now
spec.authors = ["Iñaki Baz Castillo"]
spec.email = "[email protected]"
spec.summary = "Async DNS resolver for EventMachine based on udns C library"
spec.homepage = "https://github.com/ibc/em-udns"
spec.description =
"em-udns is an async DNS resolver for EventMachine based on udns C library. Having most of the core written in C, em-udns becomes very fast. It can resolve DNS A, AAAA, PTR, MX, TXT, SRV and NAPTR records, and can handle every kind of errors (domain/record not found, request timeout, malformed response...)."
spec.extensions = ["ext/extconf.rb"]
spec.required_ruby_version = ">= 1.8.7"
spec.add_dependency "eventmachine"
spec.files = %w{
lib/em-udns.rb
lib/em-udns/resolver.rb
ext/em-udns.c
ext/em-udns.h
ext/extconf.rb
ext/udns-0.1.tar.gz
test/test-em-udns.rb
}
spec.require_paths = ["lib"]
end