Skip to content

Commit a45278d

Browse files
committed
Update gem description, fixes #71.
1 parent 2cd5c2c commit a45278d

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

lib/rubydns/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
# THE SOFTWARE.
2020

2121
module RubyDNS
22-
VERSION = '2.0.1'
22+
VERSION = '2.0.2'
2323
end

rubydns.gemspec

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,16 @@
1-
# -*- encoding: utf-8 -*-
2-
lib = File.expand_path('../lib', __FILE__)
3-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4-
require 'rubydns/version'
1+
2+
require_relative 'lib/rubydns/version'
53

64
Gem::Specification.new do |spec|
75
spec.name = "rubydns"
86
spec.version = RubyDNS::VERSION
97
spec.authors = ["Samuel Williams"]
108
spec.email = ["samuel.williams@oriontransfer.co.nz"]
119
spec.description = <<-EOF
12-
RubyDNS is a high-performance DNS server which can be easily integrated into
13-
other projects or used as a stand-alone daemon. By default it uses
14-
rule-based pattern matching. Results can be hard-coded, computed, fetched from
15-
a remote DNS server or fetched from a local cache, depending on requirements.
16-
17-
In addition, RubyDNS includes a high-performance asynchronous DNS resolver
18-
built on top of Celluloid. This module can be used by itself in client
19-
applications without using the full RubyDNS server stack.
10+
RubyDNS provides a rule-based DSL for implementing DNS servers, built on top of `Async::DNS`.
2011
EOF
2112
spec.summary = "An easy to use DNS server and resolver for Ruby."
22-
spec.homepage = "http://www.codeotaku.com/projects/rubydns"
13+
spec.homepage = "https://github.com/socketry/rubydns"
2314
spec.license = "MIT"
2415

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

0 commit comments

Comments
 (0)