Sha256: 050c746959d0b59fa5f26fc43ab18e1e33cbabdc9b5437fbfe9fd34624efa547
Contents?: true
Size: 1.55 KB
Versions: 2
Compression:
Stored size: 1.55 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rubydns/version' Gem::Specification.new do |spec| spec.name = "rubydns" spec.version = RubyDNS::VERSION spec.authors = ["Samuel Williams"] spec.email = ["samuel.williams@oriontransfer.co.nz"] spec.description = <<-EOF RubyDNS is a high-performance DNS server which can be easily integrated into other projects or used as a stand-alone daemon. By default it uses rule-based pattern matching. Results can be hard-coded, computed, fetched from a remote DNS server or fetched from a local cache, depending on requirements. In addition, RubyDNS includes a high-performance asynchronous DNS resolver built on top of EventMachine. This module can be used by itself in client applications without using the full RubyDNS server stack. EOF spec.summary = "An easy to use DNS server and resolver for Ruby." spec.homepage = "http://www.codeotaku.com/projects/rubydns" 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("eventmachine", "~> 1.0.0") spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "process-daemon", "~> 0.5.3" spec.add_development_dependency "rake" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubydns-0.8.5 | rubydns.gemspec |
rubydns-0.8.4 | rubydns.gemspec |