Skip to content

Commit

Permalink
Update gem description, fixes #71.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Jun 16, 2018
1 parent 2cd5c2c commit a45278d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lib/rubydns/version.rb
Expand Up @@ -19,5 +19,5 @@
# THE SOFTWARE.

module RubyDNS
VERSION = '2.0.1'
VERSION = '2.0.2'
end
17 changes: 4 additions & 13 deletions rubydns.gemspec
@@ -1,25 +1,16 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rubydns/version'

require_relative 'lib/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 Celluloid. This module can be used by itself in client
applications without using the full RubyDNS server stack.
RubyDNS provides a rule-based DSL for implementing DNS servers, built on top of `Async::DNS`.
EOF
spec.summary = "An easy to use DNS server and resolver for Ruby."
spec.homepage = "http://www.codeotaku.com/projects/rubydns"
spec.homepage = "https://github.com/socketry/rubydns"
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
Expand Down

0 comments on commit a45278d

Please sign in to comment.