forked from celluloid/celluloid-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
celluloid-dns.gemspec
34 lines (29 loc) · 1.3 KB
/
celluloid-dns.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
33
34
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/celluloid/dns/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = "celluloid-dns"
spec.version = Celluloid::DNS::VERSION
spec.authors = ["Samuel Williams"]
spec.email = ["samuel.williams@oriontransfer.co.nz"]
spec.description = <<-EOF
Celluloid::DNS provides a high-performance DNS client resolver and server
which can be easily integrated into other projects or used as a stand-alone
daemon.
EOF
spec.summary = "An easy to use DNS client resolver and server for Ruby."
spec.homepage = "https://github.com/celluloid/celluloid-dns"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.has_rdoc = "yard"
spec.required_ruby_version = '>= 1.9.3'
spec.add_dependency("celluloid", "~> 0.17.1")
spec.add_dependency("celluloid-io", "~> 0.17.0")
spec.add_dependency("timers", "~> 4.1.0")
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "process-daemon", "~> 0.6.1"
spec.add_development_dependency "rspec", "~> 3.2.0"
spec.add_development_dependency "rake"
end