forked from aeden/dns-zonefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dns-zonefile.gemspec
31 lines (26 loc) · 1.15 KB
/
dns-zonefile.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "dns/zonefile/version"
Gem::Specification.new do |s|
s.name = "dns-zonefile"
s.version = DNS::Zonefile::VERSION
s.authors = ["Craig R Webster"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Work with zonefiles (RFC 1035 section 5 and RFC 1034 section 3.6.1)}
s.description = %q{The format of a DNS Zonefile is defined in RFC 1035 section 5 and RFC
1034 section 3.6.1. To anyone who's using BIND they'll look very
familiar.
This is an attempt to use Ruby parse them into an object graph which can
be investigated programatically, manipulated, validated or printed into
some canonical form.}
s.rubyforge_project = "dns-zonefile"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rspec", "= 2.6"
s.add_development_dependency "rake"
s.add_runtime_dependency "treetop"
s.add_runtime_dependency "polyglot"
end